X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Fscripts%2Finit.d%2Fhelm-rdfly;fp=helm%2Fscripts%2Finit.d%2Fhelm-rdfly;h=0000000000000000000000000000000000000000;hp=ef17cd239a8436062ea8dcd98feadb5c1a51849d;hb=1696761e4b8576e8ed81caa905fd108717019226;hpb=5325734bc2e4927ed7ec146e35a6f0f2b49f50c1 diff --git a/helm/scripts/init.d/helm-rdfly b/helm/scripts/init.d/helm-rdfly deleted file mode 100755 index ef17cd239..000000000 --- a/helm/scripts/init.d/helm-rdfly +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# -# init.d script for http_getter -# -# by --Zack -# Created: Tue, 8 Oct 2002 17:18:17 +0200 -# Last-Modified: Wed, 8 Jan 2003 12:09:41 +0100 - -DAEMON="/projects/helm/daemons/rdfly/rdfly.opt" -USAGE="Usage: /etc/init.d/helm-rdfly { start | stop | restart }" - -if [ -f /etc/default/helm ]; then - . /etc/default/helm -fi - -NAME=`basename $DAEMON` -PIDFILE=/var/run/$NAME.pid - -do_start () { - echo "Starting $DAEMON ..." - start-stop-daemon \ - --start --background --pidfile $PIDFILE --make-pidfile \ - --chuid $OWNER --exec $DAEMON -} - -do_stop () { - echo "Stopping $DAEMON ..." - start-stop-daemon --stop --pidfile $PIDFILE && \ - (if [ -f $PIDFILE ]; then rm -f $PIDFILE; else true; fi) -} - -case "$1" in - - start) - do_start - ;; - - stop) - do_stop - ;; - - restart) - do_stop - do_start - ;; - - *) - echo "$USAGE" >&2 - exit 1 - ;; - -esac -