From: "Zeeshan Ali (Khattak)" <zeeshanak@xxxxxxxxx> In commit e625641, we dropped 'base' package group from destkop profile script thinking that this essential package is pulled as dep by other groups. This turned out to be not true and Fedora 18 documentation states that this package must be explicitly requested. So instead, we now do the same as we do in jeos profile: Use 'standard' group if dealing with >= F18, 'base' otherwise. --- data/install-scripts/fedora.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data/install-scripts/fedora.xml b/data/install-scripts/fedora.xml index a0a3f35..d36f4b5 100644 --- a/data/install-scripts/fedora.xml +++ b/data/install-scripts/fedora.xml @@ -237,6 +237,14 @@ logvol / --fstype <xsl:call-template name="rootfs"/> --name=LogVol00 --vgname=Vo reboot %packages +<xsl:choose> + <xsl:when test="os/version < 18"> +@base + </xsl:when> + <xsl:otherwise> +@standard + </xsl:otherwise> +</xsl:choose> @core @hardware-support @base-x -- 1.8.0.2 _______________________________________________ Libosinfo mailing list Libosinfo@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libosinfo