postrm is in gnats-user 4.1.0-2.
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 36 | #!/bin/bash
#
# Gnats installation script -- written by Brian White <bcwhite@pobox.com>
# (This was my very first attempt at learning perl... please forgive me!)
#
# Forgiving -- rewritten to bash :-) by Milan Zamazal <pdm@debian.org>.
# ...and streamlined with SED by Chad Walstrom <chewie@debian.org>
set -e
###############################################################################
#
# Utility functions
#
# Call arguments and never return error
function protect () { "$@" || true; }
###############################################################################
#
# Remove the 'gnats' system configuration when purging
#
if [ "$1" = "purge" ] && [ -d "/var/lib/gnats/gnats-db" ]; then
rmdir "/var/lib/gnats/gnats-db"
fi
###############################################################################
#
# Automatically added debhelper stuff
#
# 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
|