exchange/debian/taler-auditor.postrm

23 lines
313 B
Plaintext
Raw Normal View History

2021-01-03 23:29:27 +01:00
#!/bin/sh
set -e
if [ -f /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
2021-01-03 23:29:27 +01:00
fi
case "${1}" in
purge)
;;
remove | upgrade | failed-upgrade | abort-install | abort-upgrade | disappear) ;;
*)
echo "postrm called with unknown argument \`${1}'" >&2
exit 1
;;
2021-01-03 23:29:27 +01:00
esac
#DEBHELPER#
exit 0