summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-12 06:00:04 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-12 06:00:04 +0000
commit4ef415eb8865bed5eaedde2f3bea6c481d0aab63 (patch)
tree588ffeb0b10c74a08acb37e0872a4eefe0a84cd8 /installclasses
parentf1d4a02c2428e17e56ce7647d3ab66cb363c1b37 (diff)
downloadanaconda-4ef415eb8865bed5eaedde2f3bea6c481d0aab63.tar.gz
anaconda-4ef415eb8865bed5eaedde2f3bea6c481d0aab63.tar.xz
anaconda-4ef415eb8865bed5eaedde2f3bea6c481d0aab63.zip
remove bad hack now that it's no longer relevant
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/workstation.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index 999be05f0..ad87e83c2 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -16,34 +16,6 @@ class InstallClass(BaseInstallClass):
sortPriority = 1
- # FIXME: THIS IS A HORRIBLE HACK AND MUST GO AWAY
- def selectDependentHiddenGroups(self, id):
- BaseInstallClass.selectDependentHiddenGroups(self, id)
- if id.comps["GNOME Desktop Environment"].isSelected():
- log("GNOME was selected, adding necessary components")
- id.comps["GNOME Office/Productivity Software"].select()
- id.comps["GNOME Multimedia Software"].select()
- id.comps["GNOME Messaging and Web Tools"].select()
- if id.comps["Games and Entertainment"].isSelected():
- id.comps["GNOME Games and Entertainment"].select()
- if id.comps["Software Development"].isSelected():
- id.comps["GNOME Software Development"].select()
-
- if id.comps["KDE Desktop Environment"].isSelected():
- log("KDE was selected, adding necessary components")
- id.comps["KDE Office/Productivity Software"].select()
- id.comps["KDE Multimedia Software"].select()
- id.comps["KDE Messaging and Web Tools"].select()
- if id.comps["Games and Entertainment"].isSelected():
- id.comps["KDE Games and Entertainment"].select()
- if id.comps["Software Development"].isSelected():
- id.comps["KDE Software Development"].select()
-
- if id.comps["Games and Entertainment"].isSelected():
- id.comps["X Based Games and Entertainment"].select()
- if id.comps["Software Development"].isSelected():
- id.comps["X Software Development"].select()
-
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("partition")
@@ -54,10 +26,6 @@ class InstallClass(BaseInstallClass):
def setGroupSelection(self, comps):
BaseInstallClass.__init__(self, comps)
-# self.showGroups(comps, [ "KDE Desktop Environment",
-# ("GNOME Desktop Environment", 1),
-# "Software Development",
-# "Games and Entertainment" ] )
comps["Workstation Common"].select()
def setInstallData(self, id):