diff options
author | Endi S. Dewata <edewata@redhat.com> | 2009-10-21 16:02:18 -0500 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-11-02 16:36:53 +1100 |
commit | 1fc19ee7d0021e963923911bb440463aa79184fc (patch) | |
tree | b787c37f1c57ab7752e12f1ed2f41fe43ba402da /source4/scripting/python | |
parent | 7d38bb4e93f298a9edb11d5c7d3301029c94c326 (diff) | |
download | samba-1fc19ee7d0021e963923911bb440463aa79184fc.tar.gz samba-1fc19ee7d0021e963923911bb440463aa79184fc.tar.bz2 samba-1fc19ee7d0021e963923911bb440463aa79184fc.zip |
s4:dsdb - Fixed attribute dereferencing for FDS
Diffstat (limited to 'source4/scripting/python')
-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 4df1188156..74d8562c9b 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -688,11 +688,11 @@ def setup_samdb_partitions(samdb_path, setup_path, message, lp, session_info, if ldap_backend.ldap_backend_type == "fedora-ds": backend_modules = ["nsuniqueid", "paged_searches"] # We can handle linked attributes here, as we don't have directory-side subtree operations - tdb_modules_list = ["extended_dn_out_dereference"] + tdb_modules_list = ["extended_dn_out_fds"] elif ldap_backend.ldap_backend_type == "openldap": backend_modules = ["entryuuid", "paged_searches"] # OpenLDAP handles subtree renames, so we don't want to do any of these things - tdb_modules_list = ["extended_dn_out_dereference"] + tdb_modules_list = ["extended_dn_out_openldap"] elif serverrole == "domain controller": tdb_modules_list.insert(0, "repl_meta_data") |