[yast-commit] r67364 - in /branches/SuSE-Code-11-SP2-Branch/ldap-client: VERSION package/yast2-ldap-client.changes src/Ldap.ycp
Author: jsuchome Date: Mon Feb 6 12:14:43 2012 New Revision: 67364 URL: http://svn.opensuse.org/viewcvs/yast?rev=67364&view=rev Log: - removed previous workaround (bnc#743355 fixed properly) - 2.17.34 Modified: branches/SuSE-Code-11-SP2-Branch/ldap-client/VERSION branches/SuSE-Code-11-SP2-Branch/ldap-client/package/yast2-ldap-client.changes branches/SuSE-Code-11-SP2-Branch/ldap-client/src/Ldap.ycp Modified: branches/SuSE-Code-11-SP2-Branch/ldap-client/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ldap-client/VERSION?rev=67364&r1=67363&r2=67364&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ldap-client/VERSION (original) +++ branches/SuSE-Code-11-SP2-Branch/ldap-client/VERSION Mon Feb 6 12:14:43 2012 @@ -1 +1 @@ -2.17.33 +2.17.34 Modified: branches/SuSE-Code-11-SP2-Branch/ldap-client/package/yast2-ldap-client.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ldap-client/package/yast2-ldap-client.changes?rev=67364&r1=67363&r2=67364&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ldap-client/package/yast2-ldap-client.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/ldap-client/package/yast2-ldap-client.changes Mon Feb 6 12:14:43 2012 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Feb 6 08:36:00 CET 2012 - jsuchome@suse.cz + +- removed previous workaround (bnc#743355 fixed properly) +- 2.17.34 + +------------------------------------------------------------------- Thu Jan 26 15:47:22 CET 2012 - jsuchome@suse.cz - change mode of sssd.conf file after writing (workaround for Modified: branches/SuSE-Code-11-SP2-Branch/ldap-client/src/Ldap.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ldap-client/src/Ldap.ycp?rev=67364&r1=67363&r2=67364&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ldap-client/src/Ldap.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/ldap-client/src/Ldap.ycp Mon Feb 6 12:14:43 2012 @@ -2240,10 +2240,9 @@ */ global boolean WriteSSSDConfig () { - string file = "/etc/sssd/sssd.conf"; - if (!FileUtils::Exists (file)) + if (!FileUtils::Exists ("/etc/sssd/sssd.conf")) { - y2warning ("file %1 does not exists: not writing", file); + y2warning ("file /etc/sssd/sssd.conf does not exists: not writing"); return false; } @@ -2306,13 +2305,8 @@ if (!SCR::Write(.etc.sssd_conf, nil)) { - y2error ("error writing %1 file", file); + y2error ("error writing ldap.conf file"); } - else - { - // workadound for ini-agent bug (bnc#743355) - SCR::Execute (.target.bash, sformat ("/bin/chmod 600 %1", file)); - } return true; } -- 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