From 5cb73bf9adee22f68acc4d884982c9d81a5393a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 27 Jan 2008 00:07:06 +0000 Subject: [PATCH] * try to watch the PID for shutting down citserver --- citadel/debian/citadel.init | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/citadel/debian/citadel.init b/citadel/debian/citadel.init index 918695ac9..6d27f0301 100644 --- a/citadel/debian/citadel.init +++ b/citadel/debian/citadel.init @@ -73,17 +73,18 @@ do_stop() # 2 if daemon could not be stopped # other if a failure occurred if $SENDCOMMAND "DOWN" >/dev/null 2>&1 ; then + PID=`cat $PIDFILE` rm -f $PIDFILE count=0; - while test -S /var/run/citadel/citadel.socket; do + while test -S /var/run/citadel/citadel.socket -o -d /proc/$PID; do count=$(($count+1)) sleep 1 echo -n "." if test "$count" = "10"; then - killall citserver + kill $PID fi if test "$count" = "20"; then - killall -9 citserver + kill -9 $PID rm -rf /var/run/citadel/* fi done -- 2.30.2