11 lines
143 B
Bash
Executable File
11 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Execution finish point
|
|
# Executes on service shutdown
|
|
|
|
exec 2>&1; set -e
|
|
|
|
[ -r conf ] && . ./conf
|
|
|
|
exec /path/to/executable $OPTS
|