X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/5e1f0b5bb07f841701341a9eaad5d14d2ce791e8..f6d755eda4c0e0a068aa8de2504e16ab81a20bc0:/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 adb8f57c1..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() { - [ -c /dev/watchdog ] && watchdog -t 5 /dev/watchdog + [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \ + watchdog -t 5 /dev/watchdog +} + +stop() { + killall -q watchdog }