From bfa57c57c8b75dceda5aca5909faf2ae2ee27f9d Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 15 Jan 2026 10:17:06 -0500 Subject: [PATCH] mgr/smb: update fs.py to request all caps for the cephfs volume Update the authorizer class in fs.py to request all caps (*) for our volume. This is necessary in order to make use of the fscrypt feature from smbd. Signed-off-by: John Mulligan --- src/pybind/mgr/smb/fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/smb/fs.py b/src/pybind/mgr/smb/fs.py index dc9613f21fce..ee968cf75e43 100644 --- a/src/pybind/mgr/smb/fs.py +++ b/src/pybind/mgr/smb/fs.py @@ -32,7 +32,7 @@ class FileSystemAuthorizer: # to have more restricted defaults in the future assert entity.startswith('client.') if not caps: - caps = ['/', 'rw'] + caps = ['/', '*'] cmd = { 'prefix': 'fs authorize', 'filesystem': volume, -- 2.47.3