aboutsummaryrefslogtreecommitdiffstats
path: root/core/busybox-initscripts/watchdog.initd
diff options
context:
space:
mode:
Diffstat (limited to 'core/busybox-initscripts/watchdog.initd')
-rw-r--r--core/busybox-initscripts/watchdog.initd25
1 files changed, 0 insertions, 25 deletions
diff --git a/core/busybox-initscripts/watchdog.initd b/core/busybox-initscripts/watchdog.initd
deleted file mode 100644
index 7363bb7553..0000000000
--- a/core/busybox-initscripts/watchdog.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need dev
- after hwdrivers
-}
-
-start() {
- if ! [ -n "$WATCHDOG_DEV" ]; then
- eerror "WATCHDOG_DEV is not set"
- return 1
- fi
-
- ebegin "Starting busybox watchdog"
- start-stop-daemon --start --exec /sbin/watchdog \
- -- $WATCHDOG_OPTS $WATCHDOG_DEV
- eend $?
-}
-
-stop () {
- ebegin "Stopping busybox watchdog"
- start-stop-daemon --stop --exec /sbin/watchdog
- eend $?
-}
-