run led init after /etc/init.d/done to keep the configured led settings active after...
[openwrt-10.03/.git] / package / base-files / files / etc / init.d / watchdog
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2008 OpenWrt.org
3
4 START=97
5 start() {
6         [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
7                 watchdog -t 5 /dev/watchdog
8 }