summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-compute-tools.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-20 17:12:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-20 17:12:42 +0000
commitc332a500d10e424219cd2c7285c27e7cad30634b (patch)
tree34f3d9e1ef1d0f452b8ec3d4bf31b34cd702302f /debian/open-infrastructure-compute-tools.postrm
parentAdding upstream version 20221223. (diff)
downloadopen-infrastructure-compute-tools-f732ab01ab4c9e82550905863938a32142190808.tar.xz
open-infrastructure-compute-tools-f732ab01ab4c9e82550905863938a32142190808.zip
Adding debian version 20221223-5.debian/20221223-5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/open-infrastructure-compute-tools.postrm')
-rwxr-xr-xdebian/open-infrastructure-compute-tools.postrm57
1 files changed, 57 insertions, 0 deletions
diff --git a/debian/open-infrastructure-compute-tools.postrm b/debian/open-infrastructure-compute-tools.postrm
new file mode 100755
index 0000000..6724b94
--- /dev/null
+++ b/debian/open-infrastructure-compute-tools.postrm
@@ -0,0 +1,57 @@
+#!/bin/sh
+
+set -e
+
+Remove ()
+{
+ DEFAULT="${1}"
+
+ if [ -h "${DEFAULT}" ]
+ then
+ TARGET="$(readlink -f ${DEFAULT})"
+ else
+ TARGET=""
+ fi
+
+ for ITEM in ${DEFAULT} ${TARGET}
+ do
+ if dpkg-statoverride --list "${ITEM}" > /dev/null 2>&1
+ then
+ dpkg-statoverride --quiet --remove "${ITEM}"
+ fi
+
+ rmdir --ignore-fail-on-non-empty --parents ${ITEM} > /dev/null 2>&1 || true
+
+ rm -f ${ITEM} > /dev/null 2>&1 || true
+ rmdir --ignore-fail-on-non-empty --parents $(dirname ${ITEM}) > /dev/null 2>&1 || true
+ done
+}
+
+case "${1}" in
+ remove)
+ Remove /var/cache/container
+ Remove /etc/compute-tools/debconf
+ Remove /etc/compute-tools/config
+ Remove /etc/compute-tools/hooks
+ Remove /etc/compute-tools/keys
+ Remove /etc/needrestart/restart.d
+ Remove /var/lib/machines
+ ;;
+
+ purge)
+ rm -f /etc/compute-tools/container.conf
+ ;;
+
+ upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0