Merge pull request #1357 from jangel97/hotfix_sssd_dns_over_tls

ipaclient: Fix AttributeError by defaulting dns_over_tls to False
This commit is contained in:
Thomas Woerner
2025-05-21 17:12:15 +02:00
committed by GitHub

View File

@@ -174,6 +174,7 @@ def main():
options.no_krb5_offline_passwords = module.params.get(
'no_krb5_offline_passwords')
options.krb5_offline_passwords = not options.no_krb5_offline_passwords
options.dns_over_tls = False
fstore = sysrestore.FileStore(paths.IPA_CLIENT_SYSRESTORE)
client_domain = hostname[hostname.find(".") + 1:]