add stop() to watchdog init script, patch from Yury Polyanskiy
SVN-Revision: 21334
This commit is contained in:
parent
31548bfe2b
commit
20da5f495f
1 changed files with 6 additions and 1 deletions
|
@ -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 a new issue