From 1a28aefec8d3f9c2d6a5bf77a040a81edc94b3ac Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Wed, 1 Apr 2020 12:51:46 +0200 Subject: [PATCH] CI: Add https match for mirror.centos.org to template-overrides Some CentOS repos (currently one - Ceph NFS Ganesha) use https://mirror.centos.org instead of http:// and we break their definition by removing mirrorlist= entry and not inserting baseurl entry due to a missing match. Change-Id: I7b29f8c6be80820042023d2b85162d5cc9a65f08 --- tests/templates/template_overrides.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/templates/template_overrides.j2 b/tests/templates/template_overrides.j2 index 57db87c53e..d7ea2dcb95 100644 --- a/tests/templates/template_overrides.j2 +++ b/tests/templates/template_overrides.j2 @@ -69,6 +69,9 @@ RUN sed -i \ && sed -i \ -e "/^mirrorlist/ d" \ -e "s|^#baseurl=http://mirror.centos.org|baseurl=http://{{ nodepool_mirror_host }}|" \ + -e "s|^#baseurl=https://mirror.centos.org|baseurl=http://{{ nodepool_mirror_host }}|" \ + -e "s|^baseurl=http://mirror.centos.org|baseurl=http://{{ nodepool_mirror_host }}|" \ + -e "s|^baseurl=https://mirror.centos.org|baseurl=http://{{ nodepool_mirror_host }}|" \ /etc/yum.repos.d/CentOS-*.repo \ && sed -i \ -e "/^metalink/ d" \