aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-05-03 09:05:35 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-05-03 09:05:35 +0000
commitc01d02a0155fab8e38348863592da3094c90b1f9 (patch)
treebdbbe9ebbc6cb4f5a279f532a3cc6282a3183e98 /package/base-files
parentc70f0ec79b67c7e239cfa761db728342c7a24a47 (diff)
downloadmaster-187ad058-c01d02a0155fab8e38348863592da3094c90b1f9.tar.gz
master-187ad058-c01d02a0155fab8e38348863592da3094c90b1f9.tar.bz2
master-187ad058-c01d02a0155fab8e38348863592da3094c90b1f9.zip
[package] add stop() to watchdog init script, patch from Yury Polyanskiy
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21334 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/etc/init.d/watchdog7
1 files changed, 6 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog
index 861a1f9eb0..e44cbb153e 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-2010 OpenWrt.org
START=97
start() {
[ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
watchdog -t 5 /dev/watchdog
}
+
+stop() {
+ killall -q watchdog
+ [ -c /dev/watchdog ] && echo "V" > /dev/watchdog
+}