1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-29 00:32:03 +02:00
openwrt-xburst/package/base-files/files/etc/init.d/watchdog
florian 8e61b43b86 [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
2010-05-03 09:05:35 +00:00

14 lines
264 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# 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
}