postrm is in drizzle 1:7.2.3-2ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #!/bin/sh
set -e
DATADIR=/var/lib/drizzle
LOGDIR=/var/log/drizzle
if [ "$1" = "purge" ]
then
rm -rf $LOGDIR || true
userdel drizzle >/dev/null || true
. /usr/share/debconf/confmodule
# Ask the user if the database should be removed.
# default to "no"
db_fset drizzle/purge_database seen false
db_set drizzle/purge_database false
db_input high drizzle/purge_database || true
db_go || true
db_get drizzle/purge_database || true
if [ "$RET" = "true" ] ; then
rm -rf $DATADIR || true
fi
fi
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
exit 0
|