mirror of
https://github.com/samba-team/samba.git
synced 2025-07-06 08:59:08 +03:00
s4:dsdb - Fixed attribute dereferencing for FDS
This commit is contained in:
committed by
Andrew Bartlett
parent
7d38bb4e93
commit
1fc19ee7d0
@ -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")
|
||||
|
Reference in New Issue
Block a user