sh/supervise-daemon.sh: use start_stop_daemon_args if supervise_daemon_args is undefined
This commit is contained in:
parent
7e56a49e23
commit
6edf516a1f
@ -119,6 +119,9 @@ The amount of time, in milliseconds, s6-svc should wait for the service
|
||||
to go down when stopping the service. The default is 60000.
|
||||
.It Ar start_stop_daemon_args
|
||||
List of arguments passed to start-stop-daemon when starting the daemon.
|
||||
.It Ar supervise_daemon_args
|
||||
List of arguments passed to supervise-daemon when starting the daemon.
|
||||
If undefined, start_stop_daemon_args is used as a fallback.
|
||||
.It Ar command
|
||||
Daemon to start or stop via
|
||||
.Nm start-stop-daemon
|
||||
|
@ -34,7 +34,7 @@ supervise_start()
|
||||
${respawn_period:+--respawn-period} $respawn_period \
|
||||
${command_user+--user} $command_user \
|
||||
${umask+--umask} $umask \
|
||||
$supervise_daemon_args \
|
||||
${supervise_daemon_args:-${start_stop_daemon_args}} \
|
||||
$command \
|
||||
-- $command_args $command_args_foreground
|
||||
rc=$?
|
||||
|
Loading…
Reference in New Issue
Block a user