From ebf49a23977f1ec3131e21695f379ad98de816b7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 9 May 2017 16:42:40 +0200 Subject: Merging upstream version 20170510. Signed-off-by: Daniel Baumann --- share/scripts/debconf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'share/scripts/debconf') diff --git a/share/scripts/debconf b/share/scripts/debconf index e4c342e..dee4dcd 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -184,9 +184,19 @@ Cleanup_system () { DIRECTORY="${1}" - Chroot "${DIRECTORY}" "apt-get --yes autoremove" + Chroot "${DIRECTORY}" "apt-get --yes --purge autoremove" Chroot "${DIRECTORY}" "apt-get clean" + CRUFT="$(Chroot "${DIRECTORY}" "dpkg --get-selections | awk '/deinstall$/ { print $1 }'")" + + if [ -n "${CRUFT}" ] + then + for PACKAGE in ${CRUFT} + do + Chroot "${DIRECTORY}" "apt-get purge ${PACKAGE}" + done + fi + # Cleanup rm -f "${DIRECTORY}/etc/dpkg/dpkg.cfg.d/container-tools" rm -f "${DIRECTORY}/usr/sbin/policy-rc.d" -- cgit v1.2.3