From e6b194d8b5047f5c21273abf2031d27cb5432a5c Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Sat, 2 Feb 2019 17:13:40 -0500 Subject: [PATCH] Switch to using mirrors instead of direct download The dl.fp.o domains point to direct download servers which might not be the best place to go to when we can hit a local mirror instead. Change-Id: I352d2fb269ea00e2d92b5012328fc503a503fb0a --- tasks/lxc_install_dnf.yml | 2 +- tasks/lxc_install_yum.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/lxc_install_dnf.yml b/tasks/lxc_install_dnf.yml index 18d5cd78..221605ff 100644 --- a/tasks/lxc_install_dnf.yml +++ b/tasks/lxc_install_dnf.yml @@ -78,7 +78,7 @@ - name: Install EPEL gpg keys rpm_key: - key: "http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7" + key: "http://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7" state: present register: _add_yum_keys until: _add_yum_keys is success diff --git a/tasks/lxc_install_yum.yml b/tasks/lxc_install_yum.yml index 43ded78c..4a173011 100644 --- a/tasks/lxc_install_yum.yml +++ b/tasks/lxc_install_yum.yml @@ -36,7 +36,7 @@ - name: Install EPEL gpg keys rpm_key: - key: "http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7" + key: "http://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7" state: present register: _add_yum_keys until: _add_yum_keys is success