postrm is in mcelog 1.0~pre3-72-gcbd4da4-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 | #!/bin/sh
set -e
# Remove /etc/mcelog-disabled on purge
if [ "$1" = "purge" ]; then
if [ -d /var/lib/mcelog ]; then
rm -f /var/lib/mcelog/memory-errors
rmdir --ignore-fail-on-non-empty /var/lib/mcelog
fi
# Remove files and logs created by versions prior to 0.9~pre1-2.
rm -f /etc/mcelog-disabled
rm -f /var/log/mcelog /var/log/mcelog.*
# Purge debconf templates; debconf removed starting with 0.9~pre1-2.
if [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
fi
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
update-rc.d mcelog remove >/dev/null
fi
# End automatically added section
|