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