#!/bin/sh # # init.d script for http_getter # # by --Zack # Created: Tue, 8 Oct 2002 17:18:17 +0200 # Last-Modified: Fri, 16 Apr 2004 18:21:30 +0200 DAEMON="/projects/helm/daemons/http_getter/http_getter.opt" USAGE="Usage: /etc/init.d/helm-http-getter { 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 --background --pidfile $PIDFILE --make-pidfile \ --chuid $OWNER --exec $DAEMON echo "done!" echo -n "Starting $DAEMON respawner" /etc/init.d/daemon_respawner.sh -p $PIDFILE \ -m root@localhost \ -r http://localhost:58081/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