blob: f42797e00d200cafffb7772c5162e09425bb927a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
DAEMON="/usr/sbin/watchdog"
NAME="watchdog"
DESC="watchdog daemon"
OPTIONS=""
test -f $DAEMON || exit 0
case "$1" in
start)
echo -n "Starting $DESC: $NAME... "
start-stop-daemon -S -x $DAEMON -- $OPTIONS
echo "done."
;;
stop)
echo -n "Stopping $DESC: $NAME... "
start-stop-daemon -K -x $DAEMON
echo "done."
;;
restart)
echo "Restarting $DESC: $NAME... "
$0 stop
sleep 1
$0 start
echo "done."
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0
|