From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 5 May 2025 22:56:00 +0000 (+0200)
Subject: Fix.
X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/blog?a=commitdiff_plain;h=2a2748a7589aba9d35867ce8411e95519d90be88;p=config

Fix.
---

diff --git a/bookworm/scripts/lib/apt_get_digested b/bookworm/scripts/lib/apt_get_digested
index 4288d6e..887a004 100644
--- a/bookworm/scripts/lib/apt_get_digested
+++ b/bookworm/scripts/lib/apt_get_digested
@@ -67,7 +67,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y $1 2>&1 | while read _LINE; do
         printf ' %s' "${_COMPRESSED_ITEM}"
     fi
 done
-printf '\r\n'
+printf '\r'
 
 prefixed_msg_exit
 }
diff --git a/bookworm/scripts/lib/ensure_packages_of_tags b/bookworm/scripts/lib/ensure_packages_of_tags
index 8218228..3054df9 100644
--- a/bookworm/scripts/lib/ensure_packages_of_tags
+++ b/bookworm/scripts/lib/ensure_packages_of_tags
@@ -3,7 +3,6 @@
 
 ensure_packages_of_tags() {
 prefixed_msg_init 'ensure_packages_of_tags'
-prefixed_msg 'starting'
 
 _APT_ARG="-q -q -o 'Dpkg::Options::=--force-confnew' install"
 for _TAG in $@; do
@@ -32,6 +31,5 @@ for _TAG in $@; do
         apt_get_digested "${_APT_ARG} ${_PACKAGES}"
     fi
 done
-prefixed_msg 'finished'
 prefixed_msg_exit
 }
diff --git a/bookworm/scripts/lib/minimize_installation b/bookworm/scripts/lib/minimize_installation
index 2f1a2bb..87e88d1 100644
--- a/bookworm/scripts/lib/minimize_installation
+++ b/bookworm/scripts/lib/minimize_installation
@@ -5,7 +5,7 @@
 minimize_installation() {
 prefixed_msg_init 'minimize_installation'
 _INSTALL_TAGS="$@"
-prefixed_msg "starting (narrow system to what is required explicitly by Debian and by us, as per these INSTALL_TAGS: ${_INSTALL_TAGS})"
+prefixed_msg "narrow system to what is required explicitly by Debian and by us, as per these INSTALL_TAGS: ${_INSTALL_TAGS}"
 
 _TOK_REQ='required'
 _PATH_LIST_PREFIX=/tmp/list_
@@ -40,6 +40,5 @@ ensure_packages_of_tags ${_INSTALL_TAGS}
 prefixed_msg 'run autopurge to get rid of all unwanted packages …'
 apt_get_digested '-q -q autopurge'
 
-prefixed_msg 'finished'
 prefixed_msg_exit
 }