]> matita.cs.unibo.it Git - helm.git/commitdiff
use new daemon_respawner.sh
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 16 Apr 2004 16:02:38 +0000 (16:02 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 16 Apr 2004 16:02:38 +0000 (16:02 +0000)
helm/scripts/init.d/helm-uwobo_mowgli

index f21805ab97b335933a1e59c3a2ea018e3bfe5226..bcdb46983f4fe04a05bbfc1dd0ae389667509f07 100755 (executable)
@@ -4,11 +4,10 @@
 #
 # by --Zack <zack@cs.unibo.it>
 # Created: Wed, 15 Jan 2003 15:14:07 +0100
-# Last-Modified: Tue,  8 Apr 2003 09:43:08 +0200 zacchiro
+# Last-Modified: Fri, 16 Apr 2004 17:54:54 +0200
 
 DAEMON="/projects/helm/daemons/uwobo/uwobo.opt"
 USAGE="Usage: /etc/init.d/helm-uwobo_mowgli { start | stop | restart }"
-UWOBO_FOREVER="/etc/init.d/uwobo_forever.sh"
 
 if [ -f /etc/default/helm_mowgli ]; then
   . /etc/default/helm_mowgli
@@ -28,23 +27,20 @@ do_start () {
   sleep 2
   echo "done!"
   /etc/init.d/helm-tomcat_mowgli start
-  echo -n "Starting UWOBO respawner (uwobo_forever.sh) ... "
-  if [ -x "$UWOBO_FOREVER" ]; then
-     $UWOBO_FOREVER &
-     echo "done!"
-  else
-     echo "Can't find $UWOBO_FOREVER :-("
-  fi
+  echo -n "Starting $DAEMON respawner"
+  /etc/init.d/daemon_respawner.sh -p $PIDFILE \ -m root@localhost \
+    -r http://localhost:58080/help -d `basename $0` &
+  echo "."
 }
 
 do_stop () {
+  echo -n "Stopping $DAEMON respawner"
+  /etc/init.d/daemon_respawner.sh -d `basename $0` -s
+  echo "."
   echo -n "Stopping $DAEMON ... "
   start-stop-daemon --stop --pidfile $PIDFILE && \
   (if [ -f $PIDFILE ]; then rm -f $PIDFILE; else true; fi)
   echo "done!"
-  echo -n "Stopping UWOBO respawner (uwobo_forever.sh) ... "
-  killall `basename $UWOBO_FOREVER`
-  echo "done!"
 }
 
 case "$1" in