diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-10 23:45:12 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-10 23:45:12 +0000 |
commit | ebaaf9eda64842481043770ea69d921d9e165fd7 (patch) | |
tree | c3c55102b4067aee3eab60d4961452082d1692a5 /installclasses | |
parent | a53262440fd42f58d1147c0459e20a1cf9427572 (diff) | |
download | anaconda-ebaaf9eda64842481043770ea69d921d9e165fd7.tar.gz anaconda-ebaaf9eda64842481043770ea69d921d9e165fd7.tar.xz anaconda-ebaaf9eda64842481043770ea69d921d9e165fd7.zip |
disable comps filtering in installclasses so all are shown (for now at least)
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/server.py | 24 | ||||
-rw-r--r-- | installclasses/workstation.py | 10 |
2 files changed, 17 insertions, 17 deletions
diff --git a/installclasses/server.py b/installclasses/server.py index 281be947f..3a1a3c35e 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -17,18 +17,18 @@ class InstallClass(BaseInstallClass): def setGroupSelection(self, comps): BaseInstallClass.__init__(self, comps) - self.showGroups(comps, - [ "KDE Desktop Environment", - ("GNOME Desktop Environment", 0), - ("Base X Support", 0), - "DNS Name Server", - "Web Server", - "SQL Database Server", - "NFS File Server", - "Windows File Server", - "FTP Server", - "News Server", - "Network Servers"]) +# self.showGroups(comps, +# [ "KDE Desktop Environment", +# ("GNOME Desktop Environment", 0), +# ("Base X Support", 0), +# "DNS Name Server", +# "Web Server", +# "SQL Database Server", +# "NFS File Server", +# "Windows File Server", +# "FTP Server", +# "News Server", +# "Network Servers"]) comps["Server"].select() diff --git a/installclasses/workstation.py b/installclasses/workstation.py index c590b903f..841f551b4 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -44,14 +44,14 @@ class InstallClass(BaseInstallClass): BaseInstallClass.setSteps(self, dispatch); dispatch.skipStep("authentication") - dispatch.skipStep("chooseyourowndesktop", skip = 0) + dispatch.skipStep("desktopchoice", skip = 0) def setGroupSelection(self, comps): BaseInstallClass.__init__(self, comps) - self.showGroups(comps, [ "KDE Desktop Environment", - ("GNOME Desktop Environment", 1), - "Software Development", - "Games and Entertainment" ] ) +# self.showGroups(comps, [ "KDE Desktop Environment", +# ("GNOME Desktop Environment", 1), +# "Software Development", +# "Games and Entertainment" ] ) comps["Workstation Common"].select() def setInstallData(self, id): |