From 294ab235dc188ef92ebbe7b0cdfc9bdf90c69546 Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Wed, 15 Aug 2018 09:45:58 -0600 Subject: [PATCH] Fix configure_facts.sh for RDO mirrors The $DLRN_DEPS_BASE was not properly being evaluated because the string was in single quotes. This would to a failure if you manually ran the acceptance tests on a centos7 vm. Change-Id: I158346b3d6685b6dd88662026c0f04a99a085021 --- configure_facts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure_facts.sh b/configure_facts.sh index 96e44a984..31911da25 100644 --- a/configure_facts.sh +++ b/configure_facts.sh @@ -46,7 +46,7 @@ if [ -f /etc/ci/mirror_info.sh ]; then fi else CENTOS_MIRROR_HOST='http://mirror.centos.org' - DEPS_MIRROR_HOST='https://trunk.rdoproject.org/${DLRN_DEPS_BASE}/' + DEPS_MIRROR_HOST="https://trunk.rdoproject.org/${DLRN_DEPS_BASE}/" NODEPOOL_RDO_PROXY='https://trunk.rdoproject.org' NODEPOOL_UCA_MIRROR='http://ubuntu-cloud.archive.canonical.com/ubuntu' if uses_debs; then