X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=debian%2Fpostinst;h=03a0a900cd3e7f0e1b8454a84896b513be611270;hb=a2f12f10589a04b48cafa947b645c6ec69ec2829;hp=afa0feff7d24df793c29e828b652e0c72f67b3d4;hpb=a385a0e0d0e870bf58cab9bb31e73ca2410bdec7;p=pkg%2Ft-prot.git diff --git a/debian/postinst b/debian/postinst index afa0fef..03a0a90 100644 --- a/debian/postinst +++ b/debian/postinst @@ -1,10 +1,38 @@ #!/bin/sh -e # postinst for t-prot -if [ "$1" = 'configure' ] && [ -e /usr/share/debconf/confmodule ]; then - if dpkg --compare-versions "$2" lt "1.47-2" ; then - . /usr/share/debconf/confmodule - db_purge - db_stop +# Source debconf library. +if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +if [ "$1" != 'configure' ] && [ "$1" != 'reconfigure' ]; then + exit 0 +fi + +# change existing symlink from ../Muttrc.t-prot to ../t-prot/Mutrc +if [ "$2" = "2.1-1" ] && [ -L /etc/Muttrc.d/t-prot.rc ]; then + cd /etc/Muttrc.d && ln -sf ../t-prot/Muttrc t-prot.rc || true +fi + +# only on new install or reconfigure +if [ "x$2" = "x" ] || [ "$1" = "reconfigure" ] || [ "${DEBCONF_RECONFIGURE}" = "1" ]; then + symlink=true + if [ -e /usr/share/debconf/confmodule ]; then + db_get t-prot/muttrc.d + symlink="$RET" fi + + case "$symlink" in + true) + mkdir /etc/Muttrc.d 2> /dev/null || true + cd /etc/Muttrc.d && ln -sf ../t-prot/Muttrc t-prot.rc || true + ;; + false) + if [ -L /etc/Muttrc.d/t-prot.rc ]; then + rm /etc/Muttrc.d/t-prot.rc + rmdir /etc/Muttrc.d 2> /dev/null || true + fi + ;; + esac fi