From 3210f9a20035a241d9c53e93cf99da5d313163eb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 2 Feb 2023 14:42:48 +0100 Subject: debian (FIXME) --- debian/open-infrastructure-container-tools.postrm | 57 +++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100755 debian/open-infrastructure-container-tools.postrm (limited to 'debian/open-infrastructure-container-tools.postrm') diff --git a/debian/open-infrastructure-container-tools.postrm b/debian/open-infrastructure-container-tools.postrm new file mode 100755 index 0000000..6724b94 --- /dev/null +++ b/debian/open-infrastructure-container-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 -- cgit v1.2.3