From 5bae017de9f30b6797fa86cc7415ed524f238bfa Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Mon, 31 Jan 2022 21:54:24 +0100 Subject: [PATCH] Try to fix CentOS 8 in CI - at least a bit. (#4132) (#4138) (cherry picked from commit 24f7a3b6ad1bfd55bde38edb20a5fb1bf326e1b4) Co-authored-by: Felix Fontein --- tests/integration/targets/setup_pkg_mgr/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/targets/setup_pkg_mgr/tasks/main.yml b/tests/integration/targets/setup_pkg_mgr/tasks/main.yml index 24d0222865..1918d0f54b 100644 --- a/tests/integration/targets/setup_pkg_mgr/tasks/main.yml +++ b/tests/integration/targets/setup_pkg_mgr/tasks/main.yml @@ -15,3 +15,9 @@ ansible_pkg_mgr: community.general.zypper cacheable: yes when: ansible_os_family == "Suse" + +- shell: + cmd: | + sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*.repo + sed -i 's%#baseurl=http://mirror.centos.org/$contentdir/$releasever/%baseurl=https://vault.centos.org/8.4.2105/%g' /etc/yum.repos.d/CentOS-Linux-*.repo + when: ansible_distribution in 'CentOS' and ansible_distribution_major_version == '8'