aboutsummaryrefslogtreecommitdiffstats
path: root/debian/init.d
diff options
context:
space:
mode:
authorsiretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-04 16:41:21 +0000
committersiretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-04 16:41:21 +0000
commitb35e5d8bcfa6f0e8311f35aef78df2301f104e5f (patch)
treed021b253ec052ba1dd761de34336d3f6ffbb2885 /debian/init.d
parent0ea9fcc19ca4afd2116817fa066709d840bab5f2 (diff)
downloadlcd4linux-b35e5d8bcfa6f0e8311f35aef78df2301f104e5f.tar.gz
[lcd4linux @ 2006-09-04 16:41:21 by siretart]
removing debianisation from upstream source, as discussed with Michael on private mail. Rationale: I try to keep an updated lcd4linux in debian/sid. If you need the debinisation, please use my packages as base. If you want more updated package, please drop me a note, and I'll arrange another upload to unstable (or experimental, depending on the state of the cvs). git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@704 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'debian/init.d')
-rw-r--r--debian/init.d47
1 files changed, 0 insertions, 47 deletions
diff --git a/debian/init.d b/debian/init.d
deleted file mode 100644
index 207e038..0000000
--- a/debian/init.d
+++ /dev/null
@@ -1,47 +0,0 @@
-#! /bin/sh
-#
-# lcd4linux
-#
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/bin/lcd4linux
-NAME=lcd4linux
-DESC=lcd4linux
-
-test -f $DAEMON || exit 0
-
-set -e
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
- --exec $DAEMON
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- start-stop-daemon --oknodo --stop --quiet --pidfile /var/run/$NAME.pid \
- --exec $DAEMON
- echo "$NAME."
- ;;
- reload)
- start-stop-daemon --stop --signal 1 --quiet --pidfile \
- /var/run/$NAME.pid --exec $DAEMON
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- start-stop-daemon --stop --quiet --pidfile \
- /var/run/$NAME.pid --exec $DAEMON
- sleep 1
- start-stop-daemon --start --quiet --pidfile \
- /var/run/$NAME.pid --exec $DAEMON
- echo "$NAME."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0