summaryrefslogtreecommitdiffstats
path: root/package/watchdog/files/watchdog.init
blob: 8a45df92d01530c0a5f4517d66a5f2add6cb45b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

RUN_D=/var/run
PID_F=$RUN_D/watchdog.pid

case $1 in
 start)
  /usr/sbin/watchdog
  ;;
 stop)
  [ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
  ;;
 *)
  echo "usage: $0 (start|stop)"
  exit 1
esac

exit $?