X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/11adc3d3d99be025a29ea320b1142104f2f1e0f8..d08b885a8adf1e9c78e7b78fbb2dbd7830ad557f:/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 861a1f9eb..65a45e53f 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,8 +1,12 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2010 OpenWrt.org START=97 start() { [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \ watchdog -t 5 /dev/watchdog } + +stop() { + killall -q watchdog +}