From c6057afe6ad62508b3fb059c29a612184f1bbbeb Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 1 Dec 2020 08:31:28 +0900 Subject: [PATCH] Do not use mirror host for Ceph Luminous Luminous is still used for Debian jobs, but mirror host doesn't provide the required contents. Change-Id: I1120e881b0e7844978024ccab03b1f2eab97b098 (cherry picked from commit 8c58e4e304c43ecb66769d3fc34c92c3fd9127ea) (cherry picked from commit 422facdf13e3ce3f106c95cee370daa024b21b90) (cherry picked from commit 75de7d021d030959507b334740f17e3ad62f4525) --- configure_facts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure_facts.sh b/configure_facts.sh index c9be43a4c..21cf842fe 100644 --- a/configure_facts.sh +++ b/configure_facts.sh @@ -37,7 +37,7 @@ if [ -f /etc/ci/mirror_info.sh ]; then CENTOS_MIRROR_HOST="http://${NODEPOOL_MIRROR_HOST}" DEPS_MIRROR_HOST="${NODEPOOL_RDO_PROXY}/${DLRN_DEPS_BASE}/" if uses_debs; then - if [ "$CEPH_VERSION" == "mimic" ]; then + if [ "$CEPH_VERSION" == "mimic" ] || [ "CEPH_VERSION" == "luminous" ] ; then CEPH_MIRROR_HOST="http://download.ceph.com/debian-${CEPH_VERSION}" else CEPH_MIRROR_HOST="${CENTOS_MIRROR_HOST}/ceph-deb-${CEPH_VERSION}"