Author: ug Date: Mon Jun 30 10:08:18 2008 New Revision: 48679
URL: http://svn.opensuse.org/viewcvs/yast?rev=48679&view=rev Log: autoyast2 is installed when the profile has a <files ...> section
Modified: trunk/autoinstallation/package/autoyast2.changes trunk/autoinstallation/src/modules/Profile.ycp
Modified: trunk/autoinstallation/package/autoyast2.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/autoinstallation/package/autoyast... ============================================================================== --- trunk/autoinstallation/package/autoyast2.changes (original) +++ trunk/autoinstallation/package/autoyast2.changes Mon Jun 30 10:08:18 2008 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon Jun 30 10:04:43 CEST 2008 - ug@suse.de + +- autoyast2 is installed when the profile has a <files ...> section + +------------------------------------------------------------------- Wed Jun 25 16:19:11 CEST 2008 - ug@suse.de
- proposal selection possible via autoyast profile (fate#302946)
Modified: trunk/autoinstallation/src/modules/Profile.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/autoinstallation/src/modules/Prof... ============================================================================== --- trunk/autoinstallation/src/modules/Profile.ycp (original) +++ trunk/autoinstallation/src/modules/Profile.ycp Mon Jun 30 10:08:18 2008 @@ -115,6 +115,8 @@ } else { current["software"] = $[ "packages":[ "autoyast2-installation" ] ]; } + if( haskey( current, "files" ) ) + current["software","packages"] = add( current["software","packages"]:[], "autoyast2" ); // without autoyast2, <files ...> does not work }
/**