X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/8b820a5355f378dedab1f57ccfdc1e526fca7179..6f14855dac9eacab5ab88e866716376fcc8250cf:/package/base-files/files/etc/init.d/watchdog diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index 0821c8f47..65a45e53f 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,7 +1,12 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2010 OpenWrt.org START=97 start() { - [ -f /dev/watchtog ] && watchdog -t 5 /dev/watchdog + [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \ + watchdog -t 5 /dev/watchdog +} + +stop() { + killall -q watchdog }