summaryrefslogtreecommitdiffstats
path: root/dilos/tdebase/debian/tdm-trinity.postrm
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
commit0277521b268b21caf0ee21202b92784f302baadc (patch)
tree5d856f96adfbe46b57da31cf60daa1084b4e7a1e /dilos/tdebase/debian/tdm-trinity.postrm
parenteb16e7c7281e182297581fa8d565561869c81bca (diff)
downloadtde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz
tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dilos/tdebase/debian/tdm-trinity.postrm')
-rw-r--r--dilos/tdebase/debian/tdm-trinity.postrm51
1 files changed, 0 insertions, 51 deletions
diff --git a/dilos/tdebase/debian/tdm-trinity.postrm b/dilos/tdebase/debian/tdm-trinity.postrm
deleted file mode 100644
index 2454461f4..000000000
--- a/dilos/tdebase/debian/tdm-trinity.postrm
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/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
-#if [ -d /run/systemd/system ] ; then
-# systemctl --system daemon-reload >/dev/null || true
-#fi
-
-#DEBHELPER#
-
-exit 0