aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/watchdog
blob: 299c891428cc93e90054064cdced18bfcc6a9681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh /etc/rc.common
# Copyright (C) 2008-2011 OpenWrt.org

START=97

start() {
	[ -c /dev/watchdog ] || return 1
	[ -x /sbin/watchdog ] || return 1
	service_start /sbin/watchdog -t 5 /dev/watchdog
}
stop() {
	service_stop /sbin/watchdog
}