X-Git-Url: https://git.ralfj.de/osspd.git/blobdiff_plain/577b633f415fb5299b6c0dcaae26567eec04000f..2f43083e03c5948ae6246d1cf446c47eaca0b61c:/debian/osspd.init diff --git a/debian/osspd.init b/debian/osspd.init index c95885a..77922b6 100644 --- a/debian/osspd.init +++ b/debian/osspd.init @@ -17,7 +17,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin DESC="OSS Proxy Daemon" NAME=osspd DAEMON=/usr/sbin/$NAME -DAEMON_ARGS="-f" # run in foreground, start-stop-daemon does the forking: required to let start-stop-daemon handle the pidfile +DAEMON_ARGS="--dsp-slave=/usr/lib/osspd/ossp-slave" PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME @@ -39,6 +39,7 @@ do_start() # 2 if daemon could not be started start-stop-daemon --start --background --quiet --pidfile $PIDFILE --make-pidfile --exec $DAEMON --test > /dev/null \ || return 1 + # -f: run in foreground, start-stop-daemon does the forking - this is required to let start-stop-daemon handle the pidfile start-stop-daemon --start --background --quiet --pidfile $PIDFILE --make-pidfile --exec $DAEMON -- -f \ $DAEMON_ARGS \ || return 2