#! /bin/sh

set -e

case "$1" in
    remove)
	exit 0
	;;
    upgrade)
	exit 0
	;;
    purge)	
	echo "Purging \"/etc/suid.conf\"..."
	rm -f /etc/suid.conf
	echo "There may still be backups in \"/var/backups\"."
	exit 0
	;;
    failed-upgrade|abort-install|abort-upgrade|disappear)
	exit 0
	;;
    *)
	echo "postrm called with unknown argument \`$1\'" >&2
	exit 0
	;;
esac
