From: Patrick Donnelly Date: Sat, 14 Jul 2018 00:01:51 +0000 (-0700) Subject: ceph-debug-docker: install python3 cephfs/rados packages X-Git-Tag: v14.0.1~850^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F23040%2Fhead;p=ceph.git ceph-debug-docker: install python3 cephfs/rados packages Fixes: http://tracker.ceph.com/issues/24870 Signed-off-by: Patrick Donnelly --- 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