]> matita.cs.unibo.it Git - helm.git/commitdiff
send SIGKILL to stop web services
authorStefano Zacchiroli <zack@upsilon.cc>
Sun, 7 Sep 2003 09:47:03 +0000 (09:47 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Sun, 7 Sep 2003 09:47:03 +0000 (09:47 +0000)
helm/hbugs/broker/hbugs_broker_ctl.sh
helm/hbugs/tutors/sabba.sh

index b06f844f177d26b85d7aa14121938c9eb8647723..57ee007d5a81e103c10fb8b54cc87fee7b50917c 100755 (executable)
@@ -10,6 +10,6 @@ if [ "$1" = "start" ]; then
    echo "done!"
 elif [ "$1" = "stop" ]; then
    echo -n "Stopping HBugs broker ... "
-   killall $daemon
+   killall -9 $daemon
    echo "done!"
 fi
index 988a081f233d30f444a2c957f33063129a4279ee..55188b8c404ce170a8794bf9cb72f4e5b9dfe405 100755 (executable)
@@ -34,7 +34,7 @@ while read line; do
    tutor=`echo $line | sed 's/\.ml//'`
    if [ "$1" = "stop" ]; then
       echo -n "Stopping HBugs tutor $tutor ... "
-      killall $tutor
+      killall -9 $tutor
       echo "done!"
    elif [ "$1" = "start" ]; then
       echo -n "Starting HBugs tutor $tutor ... "