1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 10:58:59 +03:00
openwrt-xburst/package/watchdog/files/watchdog.init
nico a80cf0453e add watchdog package (thanks to Janos)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2874 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-01-10 16:47:51 +00:00

19 lines
223 B
Bash

#!/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 $?