home · contact · privacy
Fix. master
authorChristian Heller <c.heller@plomlompom.de>
Mon, 5 May 2025 22:56:00 +0000 (00:56 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 5 May 2025 22:56:00 +0000 (00:56 +0200)
bookworm/scripts/lib/apt_get_digested
bookworm/scripts/lib/ensure_packages_of_tags
bookworm/scripts/lib/minimize_installation

index 4288d6e015d34d5777a33da44e51200394609180..887a00458ebb47a152cbde085e5f3524b4ecca99 100644 (file)
@@ -67,7 +67,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y $1 2>&1 | while read _LINE; do
         printf ' %s' "${_COMPRESSED_ITEM}"
     fi
 done
         printf ' %s' "${_COMPRESSED_ITEM}"
     fi
 done
-printf '\r\n'
+printf '\r'
 
 prefixed_msg_exit
 }
 
 prefixed_msg_exit
 }
index 8218228a2bc363c4a0db86f534423b04e51e3137..3054df921b213485c9ae4ff8e6a33e764e6bb304 100644 (file)
@@ -3,7 +3,6 @@
 
 ensure_packages_of_tags() {
 prefixed_msg_init 'ensure_packages_of_tags'
 
 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
 
 _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
         apt_get_digested "${_APT_ARG} ${_PACKAGES}"
     fi
 done
-prefixed_msg 'finished'
 prefixed_msg_exit
 }
 prefixed_msg_exit
 }
index 2f1a2bb52dbff38c0cb863c388d28e788aa581f6..87e88d17c3729a1d3823d14c25dda1bc813c817d 100644 (file)
@@ -5,7 +5,7 @@
 minimize_installation() {
 prefixed_msg_init 'minimize_installation'
 _INSTALL_TAGS="$@"
 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_
 
 _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 'run autopurge to get rid of all unwanted packages …'
 apt_get_digested '-q -q autopurge'
 
-prefixed_msg 'finished'
 prefixed_msg_exit
 }
 prefixed_msg_exit
 }