diff options
Diffstat (limited to 'debian/mailgraph.postinst')
-rw-r--r-- | debian/mailgraph.postinst | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/debian/mailgraph.postinst b/debian/mailgraph.postinst deleted file mode 100644 index 4b73ef3..0000000 --- a/debian/mailgraph.postinst +++ /dev/null @@ -1,53 +0,0 @@ -#! /bin/sh -# postinst script for mailgraph -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * <postinst> `configure' <most-recently-configured-version> -# * <old-postinst> `abort-upgrade' <new version> -# * <conflictor's-postinst> `abort-remove' `in-favour' <package> -# <new-version> -# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' -# <failed-install-package> <version> `removing' -# <conflicting-package> <version> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# - -. /usr/share/debconf/confmodule - -DEFAULT="/usr/share/mailgraph/default.conf" - -case "$1" in - configure) - - tempfile=`mktemp` - cp -p /usr/share/mailgraph/default.conf ${tempfile} - - # Merge debconf values into the configuration - for foo in BOOT_START=start_on_boot MAIL_LOG=mail_log IGNORE_LOCALHOST=ignore_localhost; do - db_get mailgraph/${foo#*=} - sed -i -re "s@^(${foo%=*}=).*@\1\"${RET}\"@" "$tempfile" - done - - ucf --debconf-ok ${tempfile} /etc/default/mailgraph - ucfr mailgraph /etc/default/mailgraph - rm -f ${tempfile} - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - -#DEBHELPER# - -exit 0 |