From 6ae50dc1afce089ecf5595fdd13a088afe2886ca Mon Sep 17 00:00:00 2001 From: Julien Valroff Date: Sat, 23 Oct 2010 14:11:22 +0200 Subject: Imported Debian patch 1.14-1.4squeeze1 --- debian/mailgraph.postinst | 53 ----------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 debian/mailgraph.postinst (limited to 'debian/mailgraph.postinst') 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: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# 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 -- cgit v1.2.3