From: Laszlo Gombos Date: Mon, 7 Nov 2022 15:13:41 +0000 (+0000) Subject: ci: fix Arch container X-Git-Tag: 058~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba0b1b093de2c20514c61b69f8b72aee5d743033;p=thirdparty%2Fdracut.git ci: fix Arch container packages should be installed with -Syu instead of -Sy. --- diff --git a/test/container/Dockerfile-Arch b/test/container/Dockerfile-Arch index c8e54720a..3529b9a13 100644 --- a/test/container/Dockerfile-Arch +++ b/test/container/Dockerfile-Arch @@ -8,7 +8,7 @@ LABEL RUN="docker run -it --name NAME --privileged --ipc=host --net=host --pid=h RUN echo 'export DRACUT_NO_XATTR=1 KVERSION=$(cd /lib/modules; ls -1 | tail -1)' > /etc/profile.d/dracut-test.sh # Install needed packages for the dracut CI container -RUN pacman --noconfirm -Sy \ +RUN pacman --noconfirm -Syu \ linux dash strace dhclient asciidoc cpio pigz squashfs-tools \ qemu btrfs-progs mdadm dmraid nfs-utils nfsidmap lvm2 nbd \ dhcp networkmanager multipath-tools vi tcpdump open-iscsi \