From 8fe54aff4a31de9cc36b514ac3fe6e08b02ef375 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Fri, 8 May 2026 14:01:36 -0400 Subject: [PATCH] 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 --- container/Containerfile | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3