From 87c813398df416d91a7e4d40dd3477170a9dfcbd Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 1 Jul 2024 13:51:02 +0200 Subject: [PATCH] Fix CI for CentOS 7. (#908) (cherry picked from commit 1713995bfc3afbf40d37542849adfeda1de71d5d) --- 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 66735fed1..454760e95 100644 --- a/tests/integration/targets/setup_pkg_mgr/tasks/main.yml +++ b/tests/integration/targets/setup_pkg_mgr/tasks/main.yml @@ -16,6 +16,12 @@ cacheable: yes when: ansible_os_family == "Suse" +- shell: + cmd: | + sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/*.repo + sed -i 's%#baseurl=http://mirror.centos.org/%baseurl=https://vault.centos.org/%g' /etc/yum.repos.d/*.repo + when: ansible_distribution in 'CentOS' and ansible_distribution_major_version == '7' + - shell: cmd: | sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*.repo