[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-a3cf2f4a3e73master
parent
c70f0ec79b
commit
c01d02a015
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue