diff --git a/debian/postrm b/debian/postrm new file mode 100644 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,47 @@ +#!/bin/sh +# postrm script for mcbot +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge) + rm -rf /var/lib/nobody/data; + rm -f /var/lib/nobody/.mcbotrc; + rm -f /var/lib/nobody/mcbot-*.log; + usermod -d /nonexistent -s /bin/bash nobody + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + usermod -d /nonexistent -s /bin/bash nobody + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +