diff options
author | Martin Basti <mbasti@redhat.com> | 2016-03-08 18:29:47 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-03-09 19:04:19 +0100 |
commit | e0b9afded5baab4e6e0cca5dda5554924a59317a (patch) | |
tree | 004045e05a95479ed2d847aff8ea82521e5fd0ea /install | |
parent | 2a61ddb644b4a0bee37c1faf82c461b4cf41bc38 (diff) | |
download | freeipa-e0b9afded5baab4e6e0cca5dda5554924a59317a.tar.gz freeipa-e0b9afded5baab4e6e0cca5dda5554924a59317a.tar.xz freeipa-e0b9afded5baab4e6e0cca5dda5554924a59317a.zip |
krb5conf: use 'true' instead of 'yes' for forwardable option
'yes' is also valid value in krb5.conf but we should be consistent and
use only 'true' as we do for other options.
https://fedorahosted.org/freeipa/ticket/5518
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'install')
-rw-r--r-- | install/share/krb5.conf.template | 2 | ||||
-rwxr-xr-x | install/tools/ipa-replica-conncheck | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/install/share/krb5.conf.template b/install/share/krb5.conf.template index 6cb5ee347..92431d3fd 100644 --- a/install/share/krb5.conf.template +++ b/install/share/krb5.conf.template @@ -11,7 +11,7 @@ includedir /var/lib/sss/pubconf/krb5.include.d/ dns_lookup_kdc = true rdns = false ticket_lifetime = 24h - forwardable = yes + forwardable = true udp_preference_limit = 0 $OTHER_LIBDEFAULTS [realms] diff --git a/install/tools/ipa-replica-conncheck b/install/tools/ipa-replica-conncheck index ba7538ac7..d88291e55 100755 --- a/install/tools/ipa-replica-conncheck +++ b/install/tools/ipa-replica-conncheck @@ -249,7 +249,7 @@ def configure_krb5_conf(realm, kdc, filename): libdefaults.append({'name':'dns_lookup_kdc', 'type':'option', 'value':'true'}) libdefaults.append({'name':'rdns', 'type':'option', 'value':'false'}) libdefaults.append({'name':'ticket_lifetime', 'type':'option', 'value':'24h'}) - libdefaults.append({'name':'forwardable', 'type':'option', 'value':'yes'}) + libdefaults.append({'name':'forwardable', 'type':'option', 'value':'true'}) libdefaults.append({'name':'udp_preference_limit', 'type':'option', 'value':'0'}) opts.append({'name':'libdefaults', 'type':'section', 'value': libdefaults}) |