X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Fscripts%2Finit.d%2Fhelm-search-engine;fp=helm%2Fscripts%2Finit.d%2Fhelm-search-engine;h=0000000000000000000000000000000000000000;hp=cda415fdd5a50768839fe54626d68292eee4bee7;hb=1696761e4b8576e8ed81caa905fd108717019226;hpb=5325734bc2e4927ed7ec146e35a6f0f2b49f50c1 diff --git a/helm/scripts/init.d/helm-search-engine b/helm/scripts/init.d/helm-search-engine deleted file mode 100755 index cda415fdd..000000000 --- a/helm/scripts/init.d/helm-search-engine +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh -# -# init.d script for HELM searchEngine -# -# by --Zack -# Created: Fri, 22 Nov 2002 15:51:25 +0100 -# Last-Modified: Thu, 6 Mar 2003 17:40:16 +0100 - -DAEMON="/projects/helm/daemons/searchEngine/searchEngine.opt" -USAGE="Usage: /etc/init.d/helm-search-engine { start | stop | restart }" - -if [ -f /etc/default/helm ]; then - . /etc/default/helm -fi - -NAME=`basename $DAEMON` -PIDFILE=/var/run/$NAME.pid - -do_start () { - echo -n "Starting $DAEMON" - start-stop-daemon \ - --start --pidfile $PIDFILE --make-pidfile \ - --chuid $OWNER --background --exec $DAEMON - echo "." - echo -n "Starting $DAEMON respawner" - /etc/init.d/daemon_respawner.sh -p $PIDFILE \ -m root@localhost \ - -r http://localhost:58085/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 "." -} - -case "$1" in - - start) - do_start - ;; - - stop) - do_stop - ;; - - restart) - do_stop - do_start - ;; - - *) - echo "$USAGE" >&2 - exit 1 - ;; - -esac -