Author: locilka Date: Mon Jun 2 12:40:29 2008 New Revision: 47983
URL: http://svn.opensuse.org/viewcvs/yast?rev=47983&view=rev Log: - Return `next when going back to the automatic configuration dialog instead of returning `auto that would finish YaST and never start it again (bnc #395098). - 2.16.49
Modified: trunk/installation/VERSION trunk/installation/package/yast2-installation.changes trunk/installation/src/clients/inst_automatic_configuration.ycp
Modified: trunk/installation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/VERSION?rev=47983&am... ============================================================================== --- trunk/installation/VERSION (original) +++ trunk/installation/VERSION Mon Jun 2 12:40:29 2008 @@ -1 +1 @@ -2.16.48 +2.16.49
Modified: trunk/installation/package/yast2-installation.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/package/yast2-instal... ============================================================================== --- trunk/installation/package/yast2-installation.changes (original) +++ trunk/installation/package/yast2-installation.changes Mon Jun 2 12:40:29 2008 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Mon Jun 2 12:33:57 CEST 2008 - locilka@suse.cz + +- Return `next when going back to the automatic configuration + dialog instead of returning `auto that would finish YaST and + never start it again (bnc #395098). +- 2.16.49 + +------------------------------------------------------------------- Wed May 28 16:23:22 CEST 2008 - ug@suse.de
- timeout in case of hardware probing problems
Modified: trunk/installation/src/clients/inst_automatic_configuration.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/clients/inst_aut... ============================================================================== --- trunk/installation/src/clients/inst_automatic_configuration.ycp (original) +++ trunk/installation/src/clients/inst_automatic_configuration.ycp Mon Jun 2 12:40:29 2008 @@ -21,8 +21,11 @@ textdomain "installation";
if (GetInstArgs::going_back()) { - y2milestone ("Going back, nothing to do here..."); - return `auto; + // bnc #395098 + // There is no reason to go back as AC is non-interactive + // and additionally there is nothing before AC to run + y2milestone ("Returning `next, no reason to go back"); + return `next; }
boolean test_mode = false;