diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-08-20 21:13:13 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-07 08:37:24 +0200 |
commit | a3d7534c86e710bb9ce51f16527772925c816c63 (patch) | |
tree | c13775ed200c09ad2e071eaa64b993cf449b878e /source4/scripting | |
parent | 88f546dfd9ac579f829556e2d2cce0e20e8aed4e (diff) | |
download | samba-a3d7534c86e710bb9ce51f16527772925c816c63.tar.gz samba-a3d7534c86e710bb9ce51f16527772925c816c63.tar.xz samba-a3d7534c86e710bb9ce51f16527772925c816c63.zip |
s4:provision - Change the module order to match Windows Server
Tests show that Windows Server seems to do the access checks on the very last moment.
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/provision.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index edce3914655..1fb78ab78e7 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -581,7 +581,6 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, "rdn_name", "objectclass", "samldb", - "kludge_acl", "password_hash", "operational"] tdb_modules_list = [ @@ -590,6 +589,7 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, "linked_attributes", "extended_dn_out_ldb"] modules_list2 = ["show_deleted", + "kludge_acl", "partition"] domaindn_ldb = "users.ldb" |