]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-debug-docker: install python3 cephfs/rados packages 23040/head
authorPatrick Donnelly <pdonnell@redhat.com>
Sat, 14 Jul 2018 00:01:51 +0000 (17:01 -0700)
committerPatrick Donnelly <pdonnell@redhat.com>
Sat, 14 Jul 2018 00:08:26 +0000 (17:08 -0700)
Fixes: http://tracker.ceph.com/issues/24870
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
src/script/ceph-debug-docker.sh

index bac2cee71aae4e67edb7ca34936ace31fe0e4eaa..88e8d79d088fdcad6d3a3285efd52a83480f5175 100755 (executable)
@@ -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