diff options
Diffstat (limited to 'core/busybox-initscripts/watchdog.initd')
-rw-r--r-- | core/busybox-initscripts/watchdog.initd | 25 |
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 $? -} - |