From: John Mulligan Date: Thu, 15 Jan 2026 15:17:06 +0000 (-0500) Subject: mgr/smb: update fs.py to request all caps for the cephfs volume X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bfa57c57c8b75dceda5aca5909faf2ae2ee27f9d;p=ceph.git 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 --- 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,