]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
python: Remove unused parameter ‘backend_store_size’
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Thu, 23 Nov 2023 07:56:49 +0000 (20:56 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 14 Dec 2023 03:31:37 +0000 (03:31 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/provision/__init__.py

index a00738930a773216b47fcaeaa49a402e7dd5de1e..5fd22b1acc44e8d304dceb7ce3cf87af5892ee58 100644 (file)
@@ -830,7 +830,7 @@ def setup_name_mappings(idmap, sid, root_uid, nobody_uid,
 def setup_samdb_partitions(samdb_path, logger, lp, session_info,
                            provision_backend, names, serverrole,
                            erase=False, plaintext_secrets=False,
-                           backend_store=None,backend_store_size=None):
+                           backend_store=None):
     """Setup the partitions for the SAM database.
 
     Alternatively, provision() may call this, and then populate the database.
@@ -1288,8 +1288,7 @@ def setup_samdb(path, session_info, provision_backend, lp, names,
     setup_samdb_partitions(path, logger=logger, lp=lp,
                            provision_backend=provision_backend, session_info=session_info,
                            names=names, serverrole=serverrole, plaintext_secrets=plaintext_secrets,
-                           backend_store=backend_store,
-                           backend_store_size=backend_store_size)
+                           backend_store=backend_store)
 
     store_size = DEFAULT_BACKEND_SIZE
     if backend_store_size: