From b35e5d8bcfa6f0e8311f35aef78df2301f104e5f Mon Sep 17 00:00:00 2001 From: siretart Date: Mon, 4 Sep 2006 16:41:21 +0000 Subject: [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 --- debian/init.d | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 debian/init.d (limited to 'debian/init.d') 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 -- cgit v1.2.3