summaryrefslogtreecommitdiff
path: root/tools/run-container
diff options
context:
space:
mode:
authorParide Legovini <paride.legovini@canonical.com>2020-06-18 17:45:16 +0200
committerGitHub <noreply@github.com>2020-06-18 11:45:16 -0400
commitd4639837ff623f199afd3e44aa836bf4b845456e (patch)
tree94a510048e09fce804ca313c37432f2c23518397 /tools/run-container
parent3d13a9dd469f354d0ddc1e36be37d743b5a57c73 (diff)
downloadvyos-cloud-init-d4639837ff623f199afd3e44aa836bf4b845456e.tar.gz
vyos-cloud-init-d4639837ff623f199afd3e44aa836bf4b845456e.zip
RPM build: disable the dynamic mirror URLs when using a proxy (#437)
When using an http proxy make sure to disable all the dynamic mirror URLs. In particular: - Uncomment the baseurl in /etc/yum.repos.d/*.repo. - Comment out the mirrorlist and metalink URLs in *.repo. - Replace the dynamic download.fedoraproject.org host with dl.fedoraproject.org, which is static. - Run the above as part of the MAYBE_RELIABLE_YUM_INSTALL command, as installing packages may add new repos (e.g. EPEL). - Stop disabling fastestmirror, not needed when doing the above.
Diffstat (limited to 'tools/run-container')
-rwxr-xr-xtools/run-container5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/run-container b/tools/run-container
index 7212550e..15948e77 100755
--- a/tools/run-container
+++ b/tools/run-container
@@ -351,9 +351,8 @@ wait_for_boot() {
if [ "$OS_NAME" = "centos" ]; then
debug 1 "configuring proxy ${http_proxy}"
inside "$name" sh -c "echo proxy=$http_proxy >> /etc/yum.conf"
- inside "$name" sed -i s/enabled=1/enabled=0/ \
- /etc/yum/pluginconf.d/fastestmirror.conf
- inside "$name" sh -c "sed -i '/^#baseurl=/s/#// ; s/^mirrorlist/#mirrorlist/' /etc/yum.repos.d/*.repo"
+ inside "$name" sh -c "sed -i --regexp-extended '/^#baseurl=/s/#// ; /^(mirrorlist|metalink)=/s/^/#/' /etc/yum.repos.d/*.repo"
+ inside "$name" sh -c "sed -i 's/download\.fedoraproject\.org/dl.fedoraproject.org/g' /etc/yum.repos.d/*.repo"
else
debug 1 "do not know how to configure proxy on $OS_NAME"
fi