postrm is in isc-dhcp-server 4.1.ESV-R4-0ubuntu5.
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #!/bin/sh
#
#
set -e
case "$1" in
remove)
# Nothing to do
;;
purge)
# Remove database
rm -f /var/lib/dhcp/dhcpd.leases /var/lib/dhcp/dhcpd.leases~
# Remove database directory
if [ -d /var/lib/dhcp ]; then
rmdir --ignore-fail-on-non-empty /var/lib/dhcp/
fi
# Remove init.d configuration file
rm -f /etc/default/isc-dhcp-server
;;
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
# Nothing to do
;;
esac
init_script_error_handler()
{
return 0
}
# Automatically added by dh_apparmor
if [ "$1" = "purge" ]; then
rm -f "/etc/apparmor.d/disable/usr.sbin.dhcpd" || true
rm -f "/etc/apparmor.d/force-complain/usr.sbin.dhcpd" || true
rm -f "/etc/apparmor.d/local/usr.sbin.dhcpd" || true
rmdir /etc/apparmor.d/local 2>/dev/null || true
fi
# End automatically added section
# 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
|