summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
Diffstat (limited to 'init.d')
-rwxr-xr-xinit.d/spind17
1 files changed, 0 insertions, 17 deletions
diff --git a/init.d/spind b/init.d/spind
deleted file mode 100755
index 1a9a5f5..0000000
--- a/init.d/spind
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- before local
-}
-
-start() {
- ebegin "Starting spin daemon"
- start-stop-daemon --start --quiet --exec /usr/sbin/spind &
- eend $?
-}
-
-stop() {
- ebegin "Stopping spind"
- start-stop-daemon --stop --quiet --exec /usr/sbin/spind
- eend $?
-}