From c873e3fa581ec2284c84a16a305056e2517ea4bb Mon Sep 17 00:00:00 2001 From: Chandan kumar Date: Wed, 21 Aug 2019 13:52:04 +0530 Subject: [PATCH] Fixed NODEPOOL_MIRROR_HOST typo https://review.opendev.org/#/c/676120/ adds the ubuntu mirror host but it contains typo NODEPOOLMIRROR_HOST, it breaks the CI while sourcing /etc/ci/mirror_info.sh. Fixing the typo fixes the issue. Change-Id: I95fb295d81494782120603e830d60678474a8cfe Signed-off-by: Chandan kumar --- roles/mirror-info/templates/mirror_info.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mirror-info/templates/mirror_info.sh.j2 b/roles/mirror-info/templates/mirror_info.sh.j2 index 20e1634..ae54616 100644 --- a/roles/mirror-info/templates/mirror_info.sh.j2 +++ b/roles/mirror-info/templates/mirror_info.sh.j2 @@ -51,7 +51,7 @@ export NODEPOOL_DEBIAN_MIRROR=${NODEPOOL_DEBIAN_MIRROR:-http://$NODEPOOL_MIRROR_ export NODEPOOL_PYPI_MIRROR=${NODEPOOL_PYPI_MIRROR:-http://$NODEPOOL_MIRROR_HOST/pypi/simple} export NODEPOOL_WHEEL_MIRROR=${NODEPOOL_WHEEL_MIRROR:-http://$NODEPOOL_MIRROR_HOST/wheel/$AFS_SLUG} export NODEPOOL_UBUNTU_MIRROR=${NODEPOOL_UBUNTU_MIRROR:-http://$NODEPOOL_MIRROR_HOST/ubuntu} -export NODEPOOL_UBUNTU_PORTS_MIRROR=${NODEPOOL_UBUNTU_PORTS_MIRROR:-http://$NODEPOOLMIRROR_HOST/ubuntu-ports} +export NODEPOOL_UBUNTU_PORTS_MIRROR=${NODEPOOL_UBUNTU_PORTS_MIRROR:-http://$NODEPOOL_MIRROR_HOST/ubuntu-ports} export NODEPOOL_CENTOS_MIRROR=${NODEPOOL_CENTOS_MIRROR:-http://$NODEPOOL_MIRROR_HOST/centos} export NODEPOOL_DEBIAN_OPENSTACK_MIRROR=${NODEPOOL_DEBIAN_OPENSTACK_MIRROR:-http://$NODEPOOL_MIRROR_HOST/debian-openstack} export NODEPOOL_EPEL_MIRROR=${NODEPOOL_EPEL_MIRROR:-http://$NODEPOOL_MIRROR_HOST/epel}