#!/bin/sh -ex


_rm() {
	echo "Remove"
}


case "$1" in
	remove|purge|upgrade|disappear)
		_rm $1 || true
		;;

	failed-upgrade|abort-install|abort-upgrade)
		;;

	*)
		echo "postrm was called with unknown argument '$1'" >&2
		exit 1
		;;
esac
