From: John Mulligan Date: Fri, 8 May 2026 18:01:36 +0000 (-0400) Subject: container: include python3-ceph-smb-ctl in ceph image X-Git-Tag: v21.0.1~17^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8fe54aff4a31de9cc36b514ac3fe6e08b02ef375;p=ceph.git container: include python3-ceph-smb-ctl in ceph image The python3-ceph-smb-ctl package provides the ceph-smb-ctl CLI tool (and requires needed deps) and is a weak dependency of python3-ceph-common. However, since the container disables weak dependencies by default we need to explicitly list it if we want it in the container image. Which we do. Signed-off-by: John Mulligan --- diff --git a/container/Containerfile b/container/Containerfile index 07d68e6b5df..6ecc3ef6c96 100644 --- a/container/Containerfile +++ b/container/Containerfile @@ -180,6 +180,9 @@ RUN set -euo pipefail; \ source /etc/ceph-distro.env; \ if [ "$MAJOR" -le 9 ]; then \ echo "python3-saml" >> packages.txt; \ + fi ; \ + if [ "$MAJOR" -ge 10 ]; then \ + echo "python3-ceph-smb-ctl" >> packages.txt; \ fi # NFS-Ganesha