diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-10 17:45:25 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-10 17:45:25 +1000 |
commit | 9460427c24078aecdce602dd4cbd59a6c49a781c (patch) | |
tree | bbe8aa8938cf2efd8e3aa76c915e29c3d95615a6 /source4/scripting | |
parent | 25b68701c1c7541ef6233fae35145844911380ee (diff) | |
download | samba-9460427c24078aecdce602dd4cbd59a6c49a781c.tar.gz samba-9460427c24078aecdce602dd4cbd59a6c49a781c.tar.xz samba-9460427c24078aecdce602dd4cbd59a6c49a781c.zip |
s4: kludge_acl needs to be above repl_meta_data
We have to bypass kludge_acl in replication as otherwise we aren't
allowed access to the password entries
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/provision.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index ca38a858052..0ed2a57bb64 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -577,14 +577,14 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, "objectclass", "samldb", "password_hash", - "operational"] + "operational", + "kludge_acl"] tdb_modules_list = [ "subtree_rename", "subtree_delete", "linked_attributes", "extended_dn_out_ldb"] modules_list2 = ["show_deleted", - "kludge_acl", "partition"] domaindn_ldb = "users.ldb" |