Commit 628acc01 authored by John Hixson's avatar John Hixson
Browse files

NT4 death fallout fixes

Ticket: #24834
(cherry picked from commit 55275930)
parent f4131e6b
Showing with 2 additions and 2 deletions
+2 -2
......@@ -990,7 +990,7 @@ def generate_smb4_conf(client, smb4_conf, role):
confset2(smb4_conf, "domain logons = %s",
"yes" if cifs.domain_logons else "no")
if not client.call('notifier.common', 'system', 'activedirectory_enabled')):
if not client.call('notifier.common', 'system', 'activedirectory_enabled'):
confset2(smb4_conf, "local master = %s",
"yes" if cifs.localmaster else "no")
......@@ -1014,7 +1014,7 @@ def generate_smb4_conf(client, smb4_conf, role):
elif role == 'member':
confset1(smb4_conf, "server role = member server")
elif smb4_ldap_enabled(client):
if smb4_ldap_enabled(client):
add_ldap_conf(client, smb4_conf)
elif client.call('notifier.common', 'system', 'activedirectory_enabled'):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment