summaryrefslogtreecommitdiffstats
path: root/installclasses/workstation.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-09-30 21:05:13 +0000
committerJeremy Katz <katzj@redhat.com>2004-09-30 21:05:13 +0000
commit1f63f608c9c3ed4d469c8f69dee45c98408a33d5 (patch)
tree1f5d16a8c61148eaf128afbc2f18ef2a24e17f56 /installclasses/workstation.py
parent5d2c2809cd3ca23446f496dc0cd05880f151ed67 (diff)
downloadanaconda-1f63f608c9c3ed4d469c8f69dee45c98408a33d5.tar.gz
anaconda-1f63f608c9c3ed4d469c8f69dee45c98408a33d5.tar.xz
anaconda-1f63f608c9c3ed4d469c8f69dee45c98408a33d5.zip
2004-09-30 Jeremy Katz <katzj@redhat.com>
* installclasses/workstation.py: * installclasses/rhel_ws.py: Install compat-arch-support and compat-arch-devel-support by default (#133514). s/OpenOffice/OpenOffice.org/ Mozilla isn't the web browser now. * installclasses/personal_desktop.py: * installclasses/server.py: * installclasses/rhel_as.py: * installclasses/rhel_es.py: * installclasses/rhel_desktop.py: Install compat-arch-support by default (#133514) s/OpenOffice/OpenOffice.org/ Mozilla isn't the web browser now. * installclasses/rhel_ws.py: * installclasses/rhel_desktop.py: Should say OpenOffice.org, not OpenOffice.
Diffstat (limited to 'installclasses/workstation.py')
-rw-r--r--installclasses/workstation.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index 8857f7987..f93c87108 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -13,7 +13,7 @@ class InstallClass(personal_desktop.InstallClass):
pkgstext = N_("\tDesktop shell (GNOME)\n"
"\tOffice suite (OpenOffice.org)\n"
- "\tWeb browser (Mozilla) \n"
+ "\tWeb browser \n"
"\tEmail (Evolution)\n"
"\tInstant messaging\n"
"\tSound and video applications\n"
@@ -31,6 +31,8 @@ class InstallClass(personal_desktop.InstallClass):
grpset.selectGroup("gnome-software-development")
grpset.selectGroup("x-software-development")
grpset.selectGroup("development-tools")
-
+ grpset.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1)
+ grpset.selectGroup("compat-arch-development", asMeta = 1, missingOk = 1)
+
def __init__(self, expert):
personal_desktop.InstallClass.__init__(self, expert)