mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 12:48:25 +02:00
19 lines
223 B
Plaintext
19 lines
223 B
Plaintext
|
#!/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 $?
|