[yast-commit] r66288 - in /trunk/packager: VERSION package/yast2-packager.changes src/modules/Packages.ycp
![](https://seccdn.libravatar.org/avatar/ff2cb327bf0a83604a58d72935bcf7ff.jpg?s=120&d=mm&r=g)
Author: lslezak Date: Thu Oct 6 14:15:54 2011 New Revision: 66288 URL: http://svn.opensuse.org/viewcvs/yast?rev=66288&view=rev Log: - skip product selection in the second stage (do not reinstall the product package during autoinstallation) (bnc#721166) - 2.21.18 Modified: trunk/packager/VERSION trunk/packager/package/yast2-packager.changes trunk/packager/src/modules/Packages.ycp Modified: trunk/packager/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/VERSION?rev=66288&r1=662... ============================================================================== --- trunk/packager/VERSION (original) +++ trunk/packager/VERSION Thu Oct 6 14:15:54 2011 @@ -1 +1 @@ -2.21.17 +2.21.18 Modified: trunk/packager/package/yast2-packager.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.c... ============================================================================== --- trunk/packager/package/yast2-packager.changes (original) +++ trunk/packager/package/yast2-packager.changes Thu Oct 6 14:15:54 2011 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Oct 6 11:52:02 UTC 2011 - lslezak@suse.cz + +- skip product selection in the second stage (do not reinstall + the product package during autoinstallation) (bnc#721166) +- 2.21.18 + +------------------------------------------------------------------- Fri Sep 23 09:05:03 UTC 2011 - lslezak@suse.cz - code cleanup: dropped support for selections (replaced by Modified: trunk/packager/src/modules/Packages.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/Packages.ycp... ============================================================================== --- trunk/packager/src/modules/Packages.ycp (original) +++ trunk/packager/src/modules/Packages.ycp Thu Oct 6 14:15:54 2011 @@ -1732,6 +1732,13 @@ */ global boolean SelectProduct () { Packages::Initialize (true); + + if (Stage::cont()) + { + y2milestone("Second stage - skipping product selection"); + return true; + } + list<map<string,any> > products = Pkg::ResolvableProperties ("", `product, ""); if (size (products) == 0) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn2.opensuse.org