X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/5e1f0b5bb07f841701341a9eaad5d14d2ce791e8..a46cfc6bccf2343230f701e86fa88be1404ca1ce:/package/base-files/files/etc/init.d/watchdog?ds=sidebyside diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index adb8f57c1..299c89142 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,7 +1,13 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2011 OpenWrt.org START=97 + start() { - [ -c /dev/watchdog ] && watchdog -t 5 /dev/watchdog + [ -c /dev/watchdog ] || return 1 + [ -x /sbin/watchdog ] || return 1 + service_start /sbin/watchdog -t 5 /dev/watchdog +} +stop() { + service_stop /sbin/watchdog }