diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2010-05-03 10:56:58 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2010-05-03 10:56:58 +0000 |
commit | a481cafb5563b71aed7b61a2ed65716e383ea3f1 (patch) | |
tree | ff824e761c4921d3830e53439f0d3cfd4416f7a5 | |
parent | 00e8846c96864bda01fea784c22c6509805c1099 (diff) | |
download | upstream-a481cafb5563b71aed7b61a2ed65716e383ea3f1.tar.gz upstream-a481cafb5563b71aed7b61a2ed65716e383ea3f1.tar.bz2 upstream-a481cafb5563b71aed7b61a2ed65716e383ea3f1.zip |
base-files: Remove redundant stopping of watchdog
busybox watchdog applet should stop the watchdog before shutting down
SVN-Revision: 21341
-rwxr-xr-x | package/base-files/files/etc/init.d/watchdog | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index e44cbb153e..65a45e53f2 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -9,5 +9,4 @@ start() { stop() { killall -q watchdog - [ -c /dev/watchdog ] && echo "V" > /dev/watchdog } |