From 96dbf4dcb1e04571363422a97649fc929b35beb8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 22 Jan 2012 00:20:07 -0600 Subject: Second part of prior commit --- .../lucid_automake/kdebase/debian/tdm-kde3.postrm | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ubuntu/lucid_automake/kdebase/debian/tdm-kde3.postrm (limited to 'ubuntu/lucid_automake/kdebase/debian/tdm-kde3.postrm') diff --git a/ubuntu/lucid_automake/kdebase/debian/tdm-kde3.postrm b/ubuntu/lucid_automake/kdebase/debian/tdm-kde3.postrm new file mode 100644 index 000000000..f33a54fc4 --- /dev/null +++ b/ubuntu/lucid_automake/kdebase/debian/tdm-kde3.postrm @@ -0,0 +1,38 @@ +#! /bin/sh -e + +case "$1" in + purge) + rm -rf /var/log/tdm-kde3.log* + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +if [ "$1" = "abort-install" -o "$1" = "abort-upgrade" ]; then + # roll back displacement of default display manager file + if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE.dpkg-tmp" ]; then + # FIXME - redo this part uses shell-lib.sh from xfree86 + #observe "rolling back change of default X display manager" + mv "$DEFAULT_DISPLAY_MANAGER_FILE.dpkg-tmp" "$DEFAULT_DISPLAY_MANAGER_FILE" + fi +fi + +if [ "$1" = "purge" ]; then + for DIR in /var/lib/tdm-kde3; do + if [ -d "$DIR" ]; then + rm -rf "$DIR" + fi + done + rm -f /var/log/tdm-kde3.log* +fi + +#DEBHELPER# + +exit 0 -- cgit v1.2.1