summaryrefslogtreecommitdiffstats
path: root/init.d/watchdog
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/watchdog')
-rwxr-xr-xinit.d/watchdog14
1 files changed, 0 insertions, 14 deletions
diff --git a/init.d/watchdog b/init.d/watchdog
deleted file mode 100755
index b4b3ae7..0000000
--- a/init.d/watchdog
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/sbin/runscript
-
-start() {
- [ "$WATCHDOG_DEV" ] || die "WATCHDOG_DEV is not set"
- ebegin "Starting $SVCNAME"
- $SVCNAME $WATCHDOG_OPTS $WATCHDOG_DEV
- eend $?
-}
-
-stop () {
- ebegin "Stopping $SVCNAME"
- killall $SVCNAME
- eend $?
-}