X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8e61b43b863fe6d8c5cb94d4bac406f951bcb15f..a46cfc6bccf2343230f701e86fa88be1404ca1ce:/package/base-files/files/etc/init.d/watchdog?ds=inline diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index e44cbb153..299c89142 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,13 +1,13 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008-2010 OpenWrt.org +# Copyright (C) 2008-2011 OpenWrt.org START=97 + start() { - [ -c /dev/watchdog ] && [ -x /sbin/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() { - killall -q watchdog - [ -c /dev/watchdog ] && echo "V" > /dev/watchdog + service_stop /sbin/watchdog }