postrm is in apmd 3.2.2-15.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 | #!/bin/sh
#
# This is the postrm script for the Debian GNU/Linux apmd package
#
# Written by Dirk Eddelbuettel <edd@debian.org>
set -e
# Undo removal of a no-longer used conffile
undo_rm_conffile()
{
CONFFILE="$1"
if [ ! -e "$CONFFILE" ]; then
if [ -e "$CONFFILE".dpkg-bak ]; then
echo "Restoring modified conffile $CONFFILE"
mv -f "$CONFFILE".dpkg-bak "$CONFFILE"
elif [ -e "$CONFFILE".dpkg-obsolete ]; then
mv -f "$CONFFILE".dpkg-obsolete "$CONFFILE"
fi
fi
}
# Finish removal of a no-longer used conffile
finish_rm_conffile()
{
CONFFILE="$1"
if [ -e "$CONFFILE".dpkg-bak ]; then
rm -f "$CONFFILE".dpkg-bak
fi
}
case "$1" in
(purge)
finish_rm_conffile /etc/apm/scripts.d/hwclock
[ -d /etc/apm/resume.d ] && rmdir -p --ignore-fail-on-non-empty /etc/apm/resume.d
[ -d /etc/apm/suspend.d ] && rmdir -p --ignore-fail-on-non-empty /etc/apm/suspend.d
;;
(abort-install|abort-upgrade)
# Abort upgrade from intrepid
if dpkg --compare-versions "$2" lt "3.2.2-12ubuntu2"; then
undo_rm_conffile /etc/apm/scripts.d/hwclock
fi
;;
esac
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
update-rc.d apmd remove >/dev/null
fi
# In case this system is running systemd, we make systemd reload the unit files
# to pick up changes.
if [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
exit 0
|