diff options
author | Koen Kooi <koen@openembedded.org> | 2006-04-28 10:11:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-28 10:11:30 +0000 |
commit | 8b3e60e790a45fb4ce6be5399442e4c17835d2c1 (patch) | |
tree | e3ad350d8614f7eba66d36cca0c540136987be9d /packages/quagga/files/watchquagga.init | |
parent | 4b0e628158e8fc23584fa792a207993bf6f2a8af (diff) |
quagga: add 0.99.2 and 0.99.3, closes #476
Diffstat (limited to 'packages/quagga/files/watchquagga.init')
-rw-r--r-- | packages/quagga/files/watchquagga.init | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/packages/quagga/files/watchquagga.init b/packages/quagga/files/watchquagga.init new file mode 100644 index 0000000000..79be16d3e6 --- /dev/null +++ b/packages/quagga/files/watchquagga.init @@ -0,0 +1,57 @@ +#!/bin/sh +# +# /etc/init.d/watchquagga -- start/stop the Quagga watchdog +# +PATH=/bin:/usr/bin:/sbin:/usr/sbin + +# Load configuration +test -f /etc/default/watchquagga && . /etc/default/watchquagga + +# Check that there are daemons to be monitored. +[ -z "$watch_daemons" ] && exit 0 + +pidfile="/var/run/quagga/watchquagga.pid" + +case "$1" in + start) + echo -n "Starting quagga watchdog daemon: watchquagga" + start-stop-daemon --start \ + --pidfile $pidfile \ + --exec /usr/lib/quagga/watchquagga \ + -- -d $watch_options $watch_daemons + echo "." + ;; + + stop) + echo -n "Stopping quagga watchdog daemon: watchquagga" + start-stop-daemon --stop --quiet \ + --pidfile $pidfile + echo "." + ;; + + status) + echo -n "watchquagga " + res=1 + [ -e $pidfile ] && kill -0 `cat $pidfile` 2> /dev/null + if [ $? -eq 0 ]; then + echo "(pid `cat $pidfile`) is running..." + res=0 + else + echo "is stopped..." + fi + exit $res + ;; + + restart|force-reload) + $0 stop $2 + sleep 1 + $0 start $2 + ;; + + *) + echo "Usage: /etc/init.d/watchquagga {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 |