exchange/debian/taler-auditor.postrm
2021-07-27 00:37:10 +02:00

23 lines
313 B
Bash

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