From 2e5faaf8b7c52cdbfa4700d3ab05d4a3f9d53914 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Thu, 9 Nov 2006 21:38:39 +0000 Subject: [PATCH] fix init script --- debian/init.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/init.d b/debian/init.d index 10f4a8e..6767a8d 100644 --- a/debian/init.d +++ b/debian/init.d @@ -41,14 +41,14 @@ case "$1" in echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON - killall $NAME + killall -9 $NAME echo "$NAME." ;; restart|force-reload) echo -n "Restarting $DESC: " start-stop-daemon --stop --quiet --pidfile \ /var/run/$NAME.pid --exec $DAEMON - killall $NAME + killall -9 $NAME sleep 1 start-stop-daemon --start --quiet --pidfile \ /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS