#! /bin/sh # postrm script for zmailer # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see /usr/doc/packaging-manual/ case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) # update the menu system # if [ -x /usr/bin/update-menus ]; then update-menus; fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 esac #Diversion for bsdmainutils if [ remove = "$1" ]; then dpkg-divert --package zmailer --remove --rename \ --divert /usr/man/man1/vacation.bsd.1.gz \ /usr/man/man1/vacation.1.gz dpkg-divert --package zmailer --remove --rename \ --divert /usr/bin/vacation.bsd \ /usr/bin/vacation fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER#