postrm is in ircd-hybrid 1:8.2.12+dfsg.1-1.
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
if [ "$1" = "purge" ]; then
	rm -rf /etc/ircd-hybrid/ircd.conf \
          /etc/ircd-hybrid/ircd.motd \
	      /var/lib/ircd-hybrid
	
	
	if [ -d "/etc/ircd-hybrid" ]; then
	  rmdir --ignore-fail-on-non-empty /etc/ircd-hybrid
	fi
	rm -f /var/log/ircd/ircd-hybrid.log* /var/run/ircd/ircd-hybrid.pid
	if [ -d "/var/log/ircd" ]; then
	  rmdir --ignore-fail-on-non-empty /var/log/ircd
	fi
	if [ -d "/var/run/ircd" ]; then
	  rmdir --ignore-fail-on-non-empty /var/run/ircd 
	fi
# Not added anymore with dh_installinit -n, so we manage it manually.
	update-rc.d ircd-hybrid remove >/dev/null || exit $?
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
 |