You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/dilos/core/tdebase/debian/tdm-trinity.postrm

49 lines
1.0 KiB

#!/bin/sh -e
if [ "${BASEDIR:=/}" = "/" ]; then
BASEDIR=""
fi
case "$1" in
purge)
rm -rf /var/log/tdm-trinity.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-trinity; do
if [ -d "$DIR" ]; then
rm -rf "$DIR"
fi
done
rm -f /var/log/tdm-trinity.log*
fi
#if [ "$1" = "purge" ] ; then
# if [ -x "`which update-rc.d 2>/dev/null`" ]; then
# update-rc.d tdm remove >/dev/null || true
# fi
#fi
#DEBHELPER#
exit 0