summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-09-03 21:46:28 +0000
committerErik Troan <ewt@redhat.com>1999-09-03 21:46:28 +0000
commitb0224b1aea7792c02fb6ef4841ae7bddd9558d9e (patch)
tree0ae8346c3caff0f180885ee5c7c7aada1ef118ef
parentc355e7c165d40b1ff04d59a8c41a73b9748e9e16 (diff)
downloadanaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.tar.gz
anaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.tar.xz
anaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.zip
setup workstation/server installs properly
-rw-r--r--text.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/text.py b/text.py
index 7acf2d20f..4768fb1e0 100644
--- a/text.py
+++ b/text.py
@@ -166,7 +166,11 @@ class InstallPathWindow:
intf.steps = intf.commonSteps + intf.installSteps
todo.upgrade = 0
if (choice == 0):
- todo.setClass(installclass.Workstation())
+ todo.setClass(installclass.GNOMEWorkstation())
+ elif (choice == 1):
+ etodo.setClass(installclass.KDEWorkstation())
+ elif (choice == 2):
+ etodo.setClass(installclass.Server())
return INSTALL_OK
class UpgradeExamineWindow: