From 13044d9f9e8fe0385ba68a458a301cc82188f08b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 27 Oct 2021 22:17:35 +0900 Subject: [PATCH] Ubuntu: Use debian- ceph repo According to the Ceph documentation[1] we should use the debian-* repo for ubuntu and the ceph-deb-* repo no longer exists. [1] https://docs.ceph.com/en/latest/install/get-packages/#ceph-release-packages Change-Id: I7de0394eec856fc6d242f7b4872694324fdd12b7 --- configure_facts.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/configure_facts.sh b/configure_facts.sh index 2a118eab9..77f2ad3c9 100644 --- a/configure_facts.sh +++ b/configure_facts.sh @@ -37,11 +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" ] || [ "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}" - fi + CEPH_MIRROR_HOST="http://download.ceph.com/debian-${CEPH_VERSION}" NODEPOOL_PUPPETLABS_MIRROR="http://${NODEPOOL_MIRROR_HOST}/apt-puppetlabs" else CEPH_MIRROR_HOST="${CENTOS_MIRROR_HOST}/centos/${VERSION_ID}/storage/x86_64/ceph-${CEPH_VERSION}/"