From 954dbb02af80d7436dfb64bb00cd69ed6041a82b Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 23 Feb 2026 12:23:38 -0500 Subject: [PATCH] python-common/smb: add the remote-control-local feature See previous commit for the meaning of this feature flag. Signed-off-by: John Mulligan --- src/python-common/ceph/smb/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python-common/ceph/smb/constants.py b/src/python-common/ceph/smb/constants.py index a90f42fc8e89..1f473dfec215 100644 --- a/src/python-common/ceph/smb/constants.py +++ b/src/python-common/ceph/smb/constants.py @@ -12,6 +12,7 @@ CEPHFS_PROXY = 'cephfs-proxy' CLUSTERED = 'clustered' DOMAIN = 'domain' REMOTE_CONTROL = 'remote-control' +REMOTE_CONTROL_LOCAL = 'remote-control-local' SMBMETRICS = 'smbmetrics' @@ -23,6 +24,7 @@ FEATURES = { CLUSTERED, DOMAIN, REMOTE_CONTROL, + REMOTE_CONTROL_LOCAL, } # Services are components that listen on a "public" network port, to expose -- 2.47.3