summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>2013-01-10 23:58:17 +0200
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>2013-01-10 23:58:17 +0200
commitc84608961f588f6238e6a4525eb6508b34c39269 (patch)
treedc0287e595005d5bc265d77fde5694700c15936b
parent8ca5f9d5c36a7932eff1b0c426b1644636efb673 (diff)
fedora,installer: Don't drop 'base' package group
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.
-rw-r--r--data/install-scripts/fedora.xml8
1 files changed, 8 insertions, 0 deletions
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 &lt; 18">
+@base
+ </xsl:when>
+ <xsl:otherwise>
+@standard
+ </xsl:otherwise>
+</xsl:choose>
@core
@hardware-support
@base-x