[yast-commit] r67219 - in /branches/SuSE-Code-11-SP2-Branch/pos-installation: VERSION package/yast2-pos-installation.changes src/clients/firstboot_slepos_installation.ycp
Author: jsuchome Date: Tue Jan 17 14:43:12 2012 New Revision: 67219 URL: http://svn.opensuse.org/viewcvs/yast?rev=67219&view=rev Log: - only allow to continue when init script ended correctly (bnc#730186) - 2.17.17 Modified: branches/SuSE-Code-11-SP2-Branch/pos-installation/VERSION branches/SuSE-Code-11-SP2-Branch/pos-installation/package/yast2-pos-installation.changes branches/SuSE-Code-11-SP2-Branch/pos-installation/src/clients/firstboot_slepos_installation.ycp Modified: branches/SuSE-Code-11-SP2-Branch/pos-installation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/pos-installation/VERSION?rev=67219&r1=67218&r2=67219&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/pos-installation/VERSION (original) +++ branches/SuSE-Code-11-SP2-Branch/pos-installation/VERSION Tue Jan 17 14:43:12 2012 @@ -1 +1 @@ -2.17.16 +2.17.17 Modified: branches/SuSE-Code-11-SP2-Branch/pos-installation/package/yast2-pos-installation.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/pos-installation/package/yast2-pos-installation.changes?rev=67219&r1=67218&r2=67219&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/pos-installation/package/yast2-pos-installation.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/pos-installation/package/yast2-pos-installation.changes Tue Jan 17 14:43:12 2012 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Jan 17 14:31:47 CET 2012 - jsuchome@suse.cz + +- only allow to continue when init script ended correctly + (bnc#730186) +- 2.17.17 + +------------------------------------------------------------------- Mon Dec 12 12:49:22 CET 2011 - jsuchome@suse.cz - show failure notice when script exits with non-zero (bnc#730186) Modified: branches/SuSE-Code-11-SP2-Branch/pos-installation/src/clients/firstboot_slepos_installation.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/pos-installation/src/clients/firstboot_slepos_installation.ycp?rev=67219&r1=67218&r2=67219&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/pos-installation/src/clients/firstboot_slepos_installation.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/pos-installation/src/clients/firstboot_slepos_installation.ycp Tue Jan 17 14:43:12 2012 @@ -171,7 +171,11 @@ } Wizard::EnableBackButton (); - Wizard::EnableNextButton (); + // only allow to continue when script ended correctly + if (exit_status == 0) + { + Wizard::EnableNextButton (); + } while (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