summaryrefslogtreecommitdiffstats
path: root/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/prerm
blob: 0abf6fb23f905e486d9483868cdc840ee467b749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

case "$1" in
    remove)
	exit 1
	;;
    purge|upgrade|failed-upgrade|disappear|abort-install|abort-upgrade)
	;;
    *)
	echo "$0 called with unknown argument '$1'" 1>&2
	exit 1
	;;
esac

exit 0