From: Benjamin Drung Date: Thu, 30 Apr 2026 20:05:56 +0000 (+0200) Subject: ci(debian): drop --quiet from apt-get calls X-Git-Tag: 111~5 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=e1bf57a772198becf126aebdfd2240cebc49b2f3;p=thirdparty%2Fdracut-ng.git ci(debian): drop --quiet from apt-get calls Make the Debian/Ubuntu container build logs more verbose and easier to debug by dropping the `--quiet` flag. --- diff --git a/test/container/Dockerfile-debian b/test/container/Dockerfile-debian index c91126401..ce2a583df 100644 --- a/test/container/Dockerfile-debian +++ b/test/container/Dockerfile-debian @@ -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 \