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/postinst | |
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/postinst')
-rw-r--r-- | debian/postinst | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 75176e6..0000000 --- a/debian/postinst +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -NC="/etc/irbox.conf" - -TWEAK="no" - -# only do this stuff if we're being called to configure a package -if [ "$1" != "configure" ] -then - exit 0 -fi - -# make sure we have an /etc/irbox.conf -if [ -f $NC ] -then - echo "An /etc/irbox.conf file already exists, and will be used to" - echo "configure irboxd. You may wish to review the contents of this" - echo "file for accuracy." - echo "" -else - start-stop-daemon --stop --quiet --exec /usr/bin/irbox -fi - -#DEBHELPER# |