diff options
author | Chris Lumens <clumens@redhat.com> | 2008-12-09 12:44:46 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-12-09 12:44:46 -0500 |
commit | 660dc34b691b08a776e02beb47d632f59f485342 (patch) | |
tree | 5695c14af6cd7e50e79019a329e09176ee60ffca | |
parent | ccd82bf788da5f540ac82a44f81161c990f6dded (diff) | |
download | anaconda-660dc34b691b08a776e02beb47d632f59f485342.tar.gz anaconda-660dc34b691b08a776e02beb47d632f59f485342.tar.xz anaconda-660dc34b691b08a776e02beb47d632f59f485342.zip |
Don't install the games group as part of office/productivity (#472324).
-rw-r--r-- | installclasses/fedora.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclasses/fedora.py b/installclasses/fedora.py index 355404340..3e529c501 100644 --- a/installclasses/fedora.py +++ b/installclasses/fedora.py @@ -45,7 +45,7 @@ class InstallClass(BaseInstallClass): if productName.startswith("Red Hat Enterprise"): hidden = 1 - tasks = [(N_("Office and Productivity"), ["graphics", "office", "games"]), + tasks = [(N_("Office and Productivity"), ["graphics", "office"]), (N_("Software Development"), ["development-libs", "development-tools", "gnome-software-development", "x-software-development"],), (N_("Web Server"), ["web-server"])] |