X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/11adc3d3d99be025a29ea320b1142104f2f1e0f8..b7d3d9d3cef2286b7266dc447265a0a21565b9b9:/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 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 +}