ipaclient: Fix misspelled sssd options

The sssd options in the ipaclient role missed a 's' in the role. The readme
of the role used the proper names with 3 's'. The names in the role have
been fixed and if the old setting are used, they will be used in the first
place.

Also utils/ansible-ipa-client-install has been adaped to use the proper
option names now.

This fixes issue #145 (The ipaclient role misspells sssd)
This commit is contained in:
Thomas Woerner
2019-11-20 12:14:05 +01:00
parent 63924dd6fc
commit 6ad82e6bc7
3 changed files with 32 additions and 21 deletions

View File

@@ -339,15 +339,15 @@ def main(options, args):
f.write("ipaclient_kinit_attempts=%d\n" % options.kinit_attempts)
# sssd
if options.fixed_primary:
f.write("ipassd_fixed_primary=yes\n")
f.write("ipasssd_fixed_primary=yes\n")
if options.permit:
f.write("ipassd_permit=yes\n")
f.write("ipasssd_permit=yes\n")
if options.enable_dns_updates:
f.write("ipassd_enable_dns_updates=yes\n")
f.write("ipasssd_enable_dns_updates=yes\n")
if options.no_krb5_offline_passwords:
f.write("ipassd_no_krb5_offline_passwords=yes\n")
f.write("ipasssd_no_krb5_offline_passwords=yes\n")
if options.preserve_sssd:
f.write("ipassd_preserve_sssd=yes\n")
f.write("ipasssd_preserve_sssd=yes\n")
# automount
if options.automount_location:
f.write("ipaclient_automount_location=%s\n" %