From cecca8e6a88d5025ca1a961d254516ed5cf5319f Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 3 Aug 2020 21:18:38 +0800 Subject: [PATCH] ceph-debug-docker: install ceph-crimson-osd for crimson flavor would be handy if we can have crimson packages when debugging crimson flavored branch. Signed-off-by: Kefu Chai --- src/script/ceph-debug-docker.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index 630cbd7f5bc..42eaf535b9c 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -112,6 +112,9 @@ EOF ceph_debuginfo="ceph-base-debuginfo" ;; esac + if [ "${FLAVOR}" = "crimson" ]; then + ceph_debuginfo+=" ceph-crimson-osd-debuginfo ceph-crimson-osd" + fi time run docker build $CACHE --tag "$tag" - <