[yast-commit] r52367 - in /trunk/packager: package/yast2-packager.changes src/modules/DefaultDesktop.ycp src/modules/Packages.ycp
Author: ug Date: Mon Oct 20 15:55:59 2008 New Revision: 52367 URL: http://svn.opensuse.org/viewcvs/yast?rev=52367&view=rev Log: workaround added to get old autoyast behaviour back Modified: trunk/packager/package/yast2-packager.changes trunk/packager/src/modules/DefaultDesktop.ycp trunk/packager/src/modules/Packages.ycp Modified: trunk/packager/package/yast2-packager.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.changes?rev=52367&r1=52366&r2=52367&view=diff ============================================================================== --- trunk/packager/package/yast2-packager.changes (original) +++ trunk/packager/package/yast2-packager.changes Mon Oct 20 15:55:59 2008 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon Oct 20 15:55:06 CEST 2008 - ug@suse.de + +- workaround added to get old autoyast behaviour back + +------------------------------------------------------------------- Mon Oct 20 14:48:52 CEST 2008 - lslezak@suse.cz - display support status dialog in the package selector widget Modified: trunk/packager/src/modules/DefaultDesktop.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/DefaultDesktop.ycp?rev=52367&r1=52366&r2=52367&view=diff ============================================================================== --- trunk/packager/src/modules/DefaultDesktop.ycp (original) +++ trunk/packager/src/modules/DefaultDesktop.ycp Mon Oct 20 15:55:59 2008 @@ -17,6 +17,7 @@ import "ProductControl"; import "Installation"; import "PackagesProposal"; +import "Mode"; // All desktop definitions are taken from control file // @see GetAllDesktopsMap @@ -56,7 +57,7 @@ * Initialize default desktop from control file if specified there */ global void Init () { - if (initialized == true) { + if (initialized == true || Mode::autoinst() ) { y2debug ("Already initialized"); return; } Modified: trunk/packager/src/modules/Packages.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/Packages.ycp?rev=52367&r1=52366&r2=52367&view=diff ============================================================================== --- trunk/packager/src/modules/Packages.ycp (original) +++ trunk/packager/src/modules/Packages.ycp Mon Oct 20 15:55:59 2008 @@ -1668,7 +1668,7 @@ y2milestone ("Packages::Proposal: force_reset %1, reinit %2, lang '%3'", force_reset, reinit, Language::language); - if ( force_reset ) + if ( !Mode::autoinst() && force_reset ) { Kernel::ProbeKernel(); Packages::Reset ([`product]); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ug@svn.opensuse.org