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
|
#!/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
#DEBHELPER#
exit 0
|