You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by rl...@apache.org on 2015/05/29 18:10:59 UTC

ambari git commit: AMBARI-11524. Kerberos: using realm name with mixed case, /etc/krb5.conf's default realm was forced to uppercase (Emil Anca via rlevas)

Repository: ambari
Updated Branches:
  refs/heads/trunk 6cbddf478 -> eeb8655ac


AMBARI-11524. Kerberos: using realm name with mixed case, /etc/krb5.conf's default realm was forced to uppercase (Emil Anca via rlevas)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/eeb8655a
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/eeb8655a
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/eeb8655a

Branch: refs/heads/trunk
Commit: eeb8655acca8d8e2d4face8f3730348ffedcdbde
Parents: 6cbddf4
Author: Emil Anca <ea...@hortonworks.com>
Authored: Fri May 29 12:10:40 2015 -0400
Committer: Robert Levas <rl...@hortonworks.com>
Committed: Fri May 29 12:10:40 2015 -0400

----------------------------------------------------------------------
 .../KERBEROS/1.10.3-10/configuration/krb5-conf.xml               | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/eeb8655a/ambari-server/src/main/resources/common-services/KERBEROS/1.10.3-10/configuration/krb5-conf.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/common-services/KERBEROS/1.10.3-10/configuration/krb5-conf.xml b/ambari-server/src/main/resources/common-services/KERBEROS/1.10.3-10/configuration/krb5-conf.xml
index 3a6207b..5cf0960 100644
--- a/ambari-server/src/main/resources/common-services/KERBEROS/1.10.3-10/configuration/krb5-conf.xml
+++ b/ambari-server/src/main/resources/common-services/KERBEROS/1.10.3-10/configuration/krb5-conf.xml
@@ -49,7 +49,7 @@
 [libdefaults]
   renew_lifetime = 7d
   forwardable = true
-  default_realm = {{realm|upper()}}
+  default_realm = {{realm}}
   ticket_lifetime = 24h
   dns_lookup_realm = false
   dns_lookup_kdc = false
@@ -59,7 +59,7 @@
 {% if domains %}
 [domain_realm]
 {% for domain in domains.split(',') %}
-  {{domain}} = {{realm|upper()}}
+  {{domain}} = {{realm}}
 {% endfor %}
 {% endif %}