source: trunk/pkg/deb/init.d/jobmond @ 453

Last change on this file since 453 was 453, checked in by bastiaans, 16 years ago

pkg/deb:

  • misc fixes for Debian packages
  • Property svn:executable set to *
File size: 865 bytes
RevLine 
[430]1#! /bin/sh
2
3PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
[437]4DAEMON=/usr/sbin/jobmond
[430]5NAME=jobmond
6DESC="Job Monitor Daemon"
7
[436]8PIDFILE="/var/run/jobmond.pid"
9
[453]10test -x $DAEMON || return 0
[430]11
[437]12OPTIONS=""
13
[436]14[ -r /etc/default/$NAME ] && . /etc/default/$NAME
[430]15
16case "$1" in
17  start)
18        echo -n "Starting $DESC: "
[436]19        start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
[453]20                --exec $DAEMON -- --pidfile "$PIDFILE" $OPTIONS || { echo "start failed."; return 0; }
[430]21        echo "$NAME."
22        ;;
23  stop)
24        echo -n "Stopping $DESC: "
[436]25        start-stop-daemon --stop  --quiet --pidfile /var/run/$NAME.pid \
[453]26                --signal 9 2>&1 > /dev/null || { rm -f "$PIDFILE"; echo "not running."; return 0; }
[430]27        echo "$NAME."
[436]28        rm -f "$PIDFILE"
29        exit 0
[430]30        ;;
31  restart|force-reload)
32        $0 stop
33        $0 start
34        ;;
35  *)
36        echo "Usage: $N {start|stop|restart}" >&2
37        exit 1
38        ;;
39esac
40
41exit 0
Note: See TracBrowser for help on using the repository browser.