summaryrefslogtreecommitdiff
path: root/beagle/debian-rfs/etc/init.d/stop-bootlogd
diff options
context:
space:
mode:
authorManuel Traut <manut@mecka.net>2011-07-18 14:00:12 +0200
committerManuel Traut <manut@mecka.net>2011-07-18 14:00:12 +0200
commited006a8eb44831189e152826c692330d0a0cfe3b (patch)
tree66996c44c68a8787e4a35a85aea683975f307767 /beagle/debian-rfs/etc/init.d/stop-bootlogd
parent4493e8f707e62b9867d9cfd40205115140e7c993 (diff)
delete beagle-dir
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'beagle/debian-rfs/etc/init.d/stop-bootlogd')
-rwxr-xr-xbeagle/debian-rfs/etc/init.d/stop-bootlogd33
1 files changed, 0 insertions, 33 deletions
diff --git a/beagle/debian-rfs/etc/init.d/stop-bootlogd b/beagle/debian-rfs/etc/init.d/stop-bootlogd
deleted file mode 100755
index 1797b7d..0000000
--- a/beagle/debian-rfs/etc/init.d/stop-bootlogd
+++ /dev/null
@@ -1,33 +0,0 @@
-#! /bin/sh
-### BEGIN INIT INFO
-# Provides: stop-bootlogd
-# Required-Start: $local_fs $all
-# Required-Stop:
-# Default-Start: 2 3 4 5
-# Default-Stop:
-# Short-Description: Stop bootlogd
-# Description: See the init.d/bootlogd script
-### END INIT INFO
-
-NAME=stop-bootlogd
-DAEMON=/sbin/bootlogd
-
-[ -x "$DAEMON" ] || exit 0
-
-case "$1" in
- start)
- /etc/init.d/bootlogd stop
- ;;
- stop|restart|force-reload)
- # No-op
- ;;
- status)
- exec /etc/init.d/bootlogd status
- ;;
- *)
- echo "Usage: $NAME {start|stop|restart|force-reload}" >&2
- exit 3
- ;;
-esac
-
-: