From e0b9afded5baab4e6e0cca5dda5554924a59317a Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Tue, 8 Mar 2016 18:29:47 +0100 Subject: 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 --- install/share/krb5.conf.template | 2 +- install/tools/ipa-replica-conncheck | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'install') 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}) -- cgit