diff options
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# |