mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 21:42:17 +00:00
ipaclient_setup_sssd: Use proper setting for no_krb5_offline_passwords
options.no_krb5_offline_passwords was set using the not existing role variable krb5_offline_passwords instead of no_krb5_offline_passwords.
This commit is contained in:
@@ -163,7 +163,7 @@ def main():
|
|||||||
options.preserve_sssd = module.params.get('preserve_sssd')
|
options.preserve_sssd = module.params.get('preserve_sssd')
|
||||||
|
|
||||||
options.no_krb5_offline_passwords = module.params.get(
|
options.no_krb5_offline_passwords = module.params.get(
|
||||||
'krb5_offline_passwords')
|
'no_krb5_offline_passwords')
|
||||||
options.krb5_offline_passwords = not options.no_krb5_offline_passwords
|
options.krb5_offline_passwords = not options.no_krb5_offline_passwords
|
||||||
|
|
||||||
fstore = sysrestore.FileStore(paths.IPA_CLIENT_SYSRESTORE)
|
fstore = sysrestore.FileStore(paths.IPA_CLIENT_SYSRESTORE)
|
||||||
|
|||||||
Reference in New Issue
Block a user