]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci(debian): drop --quiet from apt-get calls
authorBenjamin Drung <benjamin.drung@canonical.com>
Thu, 30 Apr 2026 20:05:56 +0000 (22:05 +0200)
committerdevkontrol <dev@kontrol.dev>
Thu, 30 Apr 2026 20:39:00 +0000 (16:39 -0400)
Make the Debian/Ubuntu container build logs more verbose and easier to
debug by dropping the `--quiet` flag.

test/container/Dockerfile-debian

index c9112640146daec838776ec9e8f242cf13478445..ce2a583df43a20ecabbd3cc6050abc9ba8b11065 100644 (file)
@@ -26,8 +26,8 @@ RUN case $(dpkg --print-architecture) in \
     if [ "$DISTRIBUTION" = "ubuntu:rolling" ]; then \
         coreutils="coreutils-from-gnu coreutils-from-uutils- --allow-remove-essential"; \
     fi; \
-    apt-get update -y -qq && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y -qq && \
-    DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends -o Dpkg::Use-Pty=0 \
+    apt-get update && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && \
+    DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends -o Dpkg::Use-Pty=0 \
     $arch_pkgs \
     $cpio \
     $coreutils \