]> git.deb.at Git - pkg/t-prot.git/blobdiff - debian/postrm
Imported Debian patch 2.7.1-1
[pkg/t-prot.git] / debian / postrm
index e0a453e0ea28785a47705f42979224477753c52f..1428af4c4d69e783e0e72aadd00ed48088950fe9 100644 (file)
@@ -1,7 +1,25 @@
 #!/bin/sh -e
 # postrm for t-prot
+# Copyright 2002-2009 by Gerfried Fuchs <rhonda@debian.at>
+# Licenced BSD style
 
-if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
-       . /usr/share/debconf/confmodule
-       db_purge
-fi
+action=$1
+
+case "$action" in
+    remove)
+       if [ ! -e /etc/Muttrc.d/t-prot.rc.removed ]; then
+               # only disable the configuration
+               mv /etc/Muttrc.d/t-prot.rc /etc/Muttrc.d/t-prot.rc.removed || true
+       fi
+       ;;
+    purge)
+       rm /etc/Muttrc.d/t-prot.rc.removed || true
+       rm /etc/Muttrc.d/t-prot.rc || true
+       rmdir /etc/Muttrc.d 2> /dev/null || true
+       # remove debconf data on purge
+       if [ -e /usr/share/debconf/confmodule ]; then
+               . /usr/share/debconf/confmodule
+               db_purge
+       fi
+       ;;
+esac