1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 20:52:26 +03:00
openwrt-xburst/package/base-files/files/etc/init.d/watchdog
acinonyx 4ca110a5a3 [package] base-files: Remove redundant stopping of watchdog
busybox watchdog applet should stop the watchdog before shutting down

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21341 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-03 10:56:58 +00:00

13 lines
214 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
}