#! /bin/sh -e
# postrm script for f-prot-installer
#
# see: dh_installdeb(1)

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/share/doc/packaging-manual/
# use debconf
. /usr/share/debconf/confmodule

case "$1" in
    remove)
	rm -rf /usr/lib/f-prot
	rm -f /usr/bin/f-prot
	rm -f /usr/share/man/man8/f-prot.8.gz
	rm -f /usr/share/man/man1/f-prot.1.gz
	rm -f /usr/share/man/man8/check-updates.sh.8.gz
	rm -f /usr/share/man/man8/check-updates.8.gz
	for f in `find /usr/share/doc/f-prot-installer -type l`; do
	    echo removing symlink $f
	    rm -f $f
	done
	;;
    purge)
	rm -f /etc/cron.d/f-prot
	rm -rf /var/lib/f-prot
	;;
    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
	:
        ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#
