diff options
author | jacomi | 2000-07-10 14:27:35 +0000 |
---|---|---|
committer | jacomi | 2000-07-10 14:27:35 +0000 |
commit | 1fbf2587333c2f16b4a156e9255539cfbeed618a (patch) | |
tree | 7bd8cfa5788fec6f7caed109f31e3ccde262cdda /debian/init.d | |
parent | 27d55e301a0400173908bbd96832a34b7a60292e (diff) | |
download | irbox-1fbf2587333c2f16b4a156e9255539cfbeed618a.zip irbox-1fbf2587333c2f16b4a156e9255539cfbeed618a.tar.gz irbox-1fbf2587333c2f16b4a156e9255539cfbeed618a.tar.bz2 irbox-1fbf2587333c2f16b4a156e9255539cfbeed618a.tar.xz |
initialisation at system startup removed
Diffstat (limited to 'debian/init.d')
-rwxr-xr-x | debian/init.d | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/init.d b/debian/init.d deleted file mode 100755 index cfb2341..0000000 --- a/debian/init.d +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# irbox: Starts the irbox Ivy agent -# -# chkconfig: - 98 02 -# description: This is a daemon that drives an Irman infra-red device and \ -# emits its events on an Ivy bus -# processname: irbox -# config: /etc/irbox.conf - - -test -f /usr/bin/irbox || exit 0 - -# See how we were called. -case "$1" in - start) - echo -n "Infra-red Ivy driver... " - start-stop-daemon --start --exec /usr/bin/irbox -- -b 143.196.53,143.196.1:2019 & - echo "." - ;; - stop) - echo -n "Shutting down Infra-red Ivy driver: " - start-stop-daemon --stop --quiet --exec /usr/bin/irbox - echo - ;; - reload) - start-stop-daemon --stop --quiet --signal 1 --exec /usr/bin/irbox - ;; - restart) - start-stop-daemon --stop --quiet --exec /usr/bin/irbox - start-stop-daemon --start --exec /usr/bin/irbox -- -b 143.196.53,143.196.1:2019 & - ;; - *) - echo "*** Usage: irbox {start|stop|restart|reload}" - exit 1 -esac - -exit 0 - |