[package] base-files: Use -h instead of deprecated -L for symlink check
[openwrt.git] / package / base-files / files / etc / init.d / watchdog
index b9286f7..65a45e5 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
 }
This page took 0.025456 seconds and 4 git commands to generate.