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

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

exit 0