From: Andrew Tridgell Date: Wed, 2 Sep 2009 07:08:52 +0000 (+1000) Subject: repl_meta_data should only be included when we are a DC X-Git-Tag: talloc-2.0.0~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5f63160d474b1fc8484a1a9112aa4f248d1e814;p=thirdparty%2Fsamba.git repl_meta_data should only be included when we are a DC --- diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 2ab0d7c9a0c..cbffa22f333 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -585,7 +585,6 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, "password_hash", "operational"] tdb_modules_list = [ - "repl_meta_data", "subtree_rename", "subtree_delete", "linked_attributes", @@ -611,6 +610,7 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, tdb_modules_list = ["extended_dn_out_dereference"] elif serverrole == "domain controller": + tdb_modules_list.insert(0, "repl_meta_data") backend_modules = [] else: backend_modules = ["objectguid"]