From 4603578b629b6b4f70b9778fb650026154d40127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 15 Dec 2020 16:39:29 +0100 Subject: [PATCH] test/integration.sh: install podman-plugins from RPMRepo The nightly disappeared again. We now have an 8.4.0 snapshot that contains the package. Let's use it. --- test/integration.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/integration.sh b/test/integration.sh index 4ac5058..2b890b6 100755 --- a/test/integration.sh +++ b/test/integration.sh @@ -16,20 +16,20 @@ if [[ $ID == rhel ]] && ! rpm -q epel-release; then fi # HACK: podman-plugins was only recently added to RHEL. Fetch it from the -# internal RHEL 8.3.1 repository until that is released. On Fedora, -# podman-plugins is installed in the koji-osbuild-tests package. Please adjust -# the spec file to do the same on RHEL before removing this block. +# RHEL 8.4.0 snapshot until 8.3.1 released (we don't do z-stream snapshots). +# On Fedora, podman-plugins is installed in the koji-osbuild-tests package. +# Please adjust the spec file to do the same on RHEL before removing this block. greenprint "Install the podman dnsname plugin" if [[ $ID == rhel ]]; then - sudo tee /etc/yum.repos.d/rhel-8-3-1.repo << EOF -[rhel-8-3-1] -name = RHEL 8.3.1 override -baseurl = http://download.devel.redhat.com/rhel-8/nightly/RHEL-8/RHEL-8.3.1-20201130.n.2/compose/AppStream/x86_64/os + sudo tee /etc/yum.repos.d/rhel-8-4-0.repo << EOF +[rhel-8-4-0] +name = RHEL 8.4.0 override +baseurl = https://rpmrepo.osbuild.org/v1/psi/el8/el8-x86_64-appstream-8.4.0.n-20201201 enabled = 0 gpgcheck = 1 EOF - sudo dnf -y install '--disablerepo=*' --enablerepo=rhel-8-3-1 podman-plugins + sudo dnf -y install '--disablerepo=*' --enablerepo=rhel-8-4-0 podman-plugins fi greenprint "Fetching RPMs"