[package] base-files: retrigger usb coldplug after module loading, solves usb_modeswi...
[openwrt/svn-archive/archive.git] / package / base-files / files / etc / init.d / watchdog
index b9286f7de4a116446bc26f28bedd56496bd595ff..65a45e53f23602fb633aba277984649b7e9ccec5 100755 (executable)
@@ -1,7 +1,12 @@
 #!/bin/sh /etc/rc.common
-# Copyright (C) 2008 OpenWrt.org
+# Copyright (C) 2008-2010 OpenWrt.org
 
 START=97
 start() {
-        [ -c /dev/watchtog ] && watchdog -t 5 /dev/watchdog
+        [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
+               watchdog -t 5 /dev/watchdog
+}
+
+stop() {
+       killall -q watchdog
 }