diff options
| author | Andrew Tridgell <tridge@samba.org> | 2009-09-02 16:58:04 +1000 | 
|---|---|---|
| committer | Andrew Tridgell <tridge@samba.org> | 2009-09-02 18:19:56 +1000 | 
| commit | 199be936d8920fce31e18d6663f8ba36f573d26f (patch) | |
| tree | 31b541482f519b2b9fbe6fe2b5e832481c6daa8b | |
| parent | 69802b3a3b934407d898088c8b3fbee64919b668 (diff) | |
| download | samba-199be936d8920fce31e18d6663f8ba36f573d26f.tar.gz samba-199be936d8920fce31e18d6663f8ba36f573d26f.tar.bz2 samba-199be936d8920fce31e18d6663f8ba36f573d26f.zip  | |
move the repl_meta_data module up the ldb module stack
The repl_meta_data module needs to be above the linked_attributes
module, to allow linked_attributes to do its magic
| -rw-r--r-- | source4/scripting/python/samba/provision.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index bb95f3834e..2ab0d7c9a0 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -585,6 +585,7 @@ 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", @@ -610,7 +611,7 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info,              tdb_modules_list = ["extended_dn_out_dereference"]      elif serverrole == "domain controller": -        backend_modules = ["repl_meta_data"] +        backend_modules = []      else:          backend_modules = ["objectguid"]  | 
