From d7c0aed5ab029a04cd60356126d7feede60bfc0a Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 13 Aug 2009 11:53:16 +0000 Subject: main/gross: init.d script fix we stop the daemon using --exec rather than pidfile. This is to make sure that all threads (when using linuxthreads) are gone when restarting. fixes #130 --- main/gross/grossd.initd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'main/gross/grossd.initd') diff --git a/main/gross/grossd.initd b/main/gross/grossd.initd index 3d1c43d708..4d59b623a9 100644 --- a/main/gross/grossd.initd +++ b/main/gross/grossd.initd @@ -4,6 +4,7 @@ NAME="grossd" DAEMON="/usr/sbin/$NAME" DAEMON_USER="gross" DAEMON_GROUP="gross" +pidfile=/var/run/gross/$NAME.pid depend() { need net @@ -20,16 +21,15 @@ check_config() { start() { check_config || return 1 ebegin "Starting ${NAME}" - start-stop-daemon --start --quiet \ + start-stop-daemon --start --quiet --pidfile ${pidfile} \ --exec ${DAEMON} -- \ - -p /var/run/gross/grossd.pid \ - -u ${DAEMON_USER} ${OPTS} + -p ${pidfile} -u ${DAEMON_USER} ${OPTS} eend $? } stop() { ebegin "Stopping ${NAME}" - start-stop-daemon --stop --pidfile /var/run/gross/grossd.pid + start-stop-daemon --stop --exec ${DAEMON} eend $? } -- cgit v1.2.3