From b5595d3e5098ce04891bcae36fab51875cb623cb Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Wed, 30 Aug 2023 10:07:53 -0500 Subject: [PATCH] ceph-releases/ALL/centos/daemon-base: fix __GANESHA_REPO__ syntax Followup to https://github.com/ceph/ceph-container/pull/2149. Currently, the script parses __GANESHA_REPO__ as a variable when it shouldn't. Signed-off-by: Laura Flores --- ceph-releases/ALL/centos/daemon-base/__DOCKERFILE_INSTALL__ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-releases/ALL/centos/daemon-base/__DOCKERFILE_INSTALL__ b/ceph-releases/ALL/centos/daemon-base/__DOCKERFILE_INSTALL__ index 725aeaf92..b94239c8c 100644 --- a/ceph-releases/ALL/centos/daemon-base/__DOCKERFILE_INSTALL__ +++ b/ceph-releases/ALL/centos/daemon-base/__DOCKERFILE_INSTALL__ @@ -2,7 +2,7 @@ yum install -y epel-release && \ yum install -y jq && \ bash -c ' \ if [ -n "__GANESHA_PACKAGES__" ]; then \ - ../../../"${CEPH_VERSION}"/centos/__GANESHA_REPO__ + ../../../"${CEPH_VERSION}"/centos/"__GANESHA_REPO__" fi ; \ if [ -n "__ISCSI_PACKAGES__" ]; then \ curl -s -L https://shaman.ceph.com/api/repos/tcmu-runner/main/latest/centos/__ENV_[DISTRO_VERSION]__/repo?arch=$(arch) -o /etc/yum.repos.d/tcmu-runner.repo ; \