From 08bb5a244f819144c12c12b42d0614e220f7dfa4 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Fri, 13 Jul 2018 17:01:51 -0700 Subject: [PATCH] ceph-debug-docker: install python3 cephfs/rados packages Fixes: http://tracker.ceph.com/issues/24870 Signed-off-by: Patrick Donnelly --- src/script/ceph-debug-docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index bac2cee71aae..88e8d79d088f 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -92,7 +92,7 @@ COPY cephdev.asc cephdev.asc RUN apt-key add cephdev.asc && \ curl -L https://shaman.ceph.com/api/repos/ceph/${branch}/${sha}/${env/://}/repo | tee /etc/apt/sources.list.d/ceph_dev.list && \ apt-get update --yes && \ - DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get --assume-yes -q --no-install-recommends install -o Dpkg::Options::=--force-confnew --allow-unauthenticated ceph ceph-osd-dbg ceph-mds-dbg ceph-mgr-dbg ceph-mon-dbg ceph-common-dbg ceph-fuse-dbg ceph-test-dbg radosgw-dbg + DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get --assume-yes -q --no-install-recommends install -o Dpkg::Options::=--force-confnew --allow-unauthenticated ceph ceph-osd-dbg ceph-mds-dbg ceph-mgr-dbg ceph-mon-dbg ceph-common-dbg ceph-fuse-dbg ceph-test-dbg radosgw-dbg python3-cephfs python3-rados EOF time run docker build $CACHE --tag "$tag" . else # try RHEL flavor @@ -105,7 +105,7 @@ RUN yum update -y && \ RUN wget -O /etc/yum.repos.d/ceph-dev.repo https://shaman.ceph.com/api/repos/ceph/${branch}/${sha}/centos/7/repo && \ yum clean all && \ yum upgrade -y && \ - yum install -y ceph ceph-debuginfo ceph-fuse + yum install -y ceph ceph-debuginfo ceph-fuse python34-rados python34-cephfs EOF fi popd -- 2.47.3