[yast-commit] r63288 - in /trunk/ldap-client: VERSION package/yast2-ldap-client.changes src/Ldap.ycp

Author: jsuchome Date: Tue Feb 1 10:38:34 2011 New Revision: 63288 URL: http://svn.opensuse.org/viewcvs/yast?rev=63288&view=rev Log: - install correct package for Kerberos (krb5-client) - read cache_credentials value from sssd.conf - 2.20.12 Modified: trunk/ldap-client/VERSION trunk/ldap-client/package/yast2-ldap-client.changes trunk/ldap-client/src/Ldap.ycp Modified: trunk/ldap-client/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/VERSION?rev=63288&r1=... ============================================================================== --- trunk/ldap-client/VERSION (original) +++ trunk/ldap-client/VERSION Tue Feb 1 10:38:34 2011 @@ -1 +1 @@ -2.20.11 +2.20.12 Modified: trunk/ldap-client/package/yast2-ldap-client.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/package/yast2-ldap-cl... ============================================================================== --- trunk/ldap-client/package/yast2-ldap-client.changes (original) +++ trunk/ldap-client/package/yast2-ldap-client.changes Tue Feb 1 10:38:34 2011 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Feb 1 10:36:03 CET 2011 - jsuchome@suse.cz + +- install correct package for Kerberos (krb5-client) +- read cache_credentials value from sssd.conf +- 2.20.12 + +------------------------------------------------------------------- Mon Jan 24 15:12:08 CET 2011 - jsuchome@suse.cz - look for 'sss' in nsswitch.conf, not for 'sssd' (bnc#666184) Modified: trunk/ldap-client/src/Ldap.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/src/Ldap.ycp?rev=6328... ============================================================================== --- trunk/ldap-client/src/Ldap.ycp (original) +++ trunk/ldap-client/src/Ldap.ycp Tue Feb 1 10:38:34 2011 @@ -301,7 +301,7 @@ global list<string> sssd_packages = [ "sssd" ]; // packages needed for sssd + kerberos configuration - global list<string> kerberos_packages = [ "kerberos-client" ]; + global list<string> kerberos_packages = [ "krb5-client" ]; // if sssd is used instead of pam_ldap/nss_ldap (fate#308902) global boolean sssd = true; @@ -900,6 +900,8 @@ string kdc = (string) SCR::Read (add (domain, "krb5_kdcip")); if (kdc != nil) krb5_kdcip = kdc; + + sssd_cache_credentials = SCR::Read (add (domain, "cache_credentials")) == "True"; } if (krb5_realm != "" && krb5_kdcip != "") { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn2.opensuse.org