X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/11adc3d3d99be025a29ea320b1142104f2f1e0f8..f3e5707f9a6e2aab0fc27b6cb2cd6173fafd11dc:/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 861a1f9eb..299c89142 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,8 +1,13 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008 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() { + service_stop /sbin/watchdog }