[yast-commit] r51831 - in /trunk/tune: VERSION hwinfo/src/SystemSettings.ycp package/yast2-tune.changes
Author: lslezak Date: Fri Oct 3 13:06:09 2008 New Revision: 51831 URL: http://svn.opensuse.org/viewcvs/yast?rev=51831&view=rev Log: - SystemSettings.ycp - check if ENABLE_SYSRQ is nil (bnc#431909) - 2.17.4 Modified: trunk/tune/VERSION trunk/tune/hwinfo/src/SystemSettings.ycp trunk/tune/package/yast2-tune.changes Modified: trunk/tune/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/VERSION?rev=51831&r1=51830&r2=51831&view=diff ============================================================================== --- trunk/tune/VERSION (original) +++ trunk/tune/VERSION Fri Oct 3 13:06:09 2008 @@ -1 +1 @@ -2.17.3 +2.17.4 Modified: trunk/tune/hwinfo/src/SystemSettings.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/hwinfo/src/SystemSettings.ycp?rev=51831&r1=51830&r2=51831&view=diff ============================================================================== --- trunk/tune/hwinfo/src/SystemSettings.ycp (original) +++ trunk/tune/hwinfo/src/SystemSettings.ycp Fri Oct 3 13:06:09 2008 @@ -139,7 +139,7 @@ global define boolean Write () { // writing SysRq settings - if (ENABLE_SYSRQ == "yes" || ENABLE_SYSRQ == "no" || regexpmatch(ENABLE_SYSRQ, "^[0-9]*$")) + if (ENABLE_SYSRQ != nil && (ENABLE_SYSRQ == "yes" || ENABLE_SYSRQ == "no" || regexpmatch(ENABLE_SYSRQ, "^[0-9]*$"))) { // save the SysRq setting y2milestone("Saving ENABLE_SYSRQ: %1", ENABLE_SYSRQ); Modified: trunk/tune/package/yast2-tune.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/package/yast2-tune.changes?rev=51831&r1=51830&r2=51831&view=diff ============================================================================== --- trunk/tune/package/yast2-tune.changes (original) +++ trunk/tune/package/yast2-tune.changes Fri Oct 3 13:06:09 2008 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Oct 3 13:03:03 CEST 2008 - lslezak@suse.cz + +- SystemSettings.ycp - check if ENABLE_SYSRQ is nil (bnc#431909) +- 2.17.4 + +------------------------------------------------------------------- Wed Sep 10 11:11:16 CEST 2008 - lslezak@suse.cz - merged proofread texts (2008-09-08) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn.opensuse.org