diff options
author | Erik Troan <ewt@redhat.com> | 1999-09-03 21:46:28 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-09-03 21:46:28 +0000 |
commit | b0224b1aea7792c02fb6ef4841ae7bddd9558d9e (patch) | |
tree | 0ae8346c3caff0f180885ee5c7c7aada1ef118ef | |
parent | c355e7c165d40b1ff04d59a8c41a73b9748e9e16 (diff) | |
download | anaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.tar.gz anaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.tar.xz anaconda-b0224b1aea7792c02fb6ef4841ae7bddd9558d9e.zip |
setup workstation/server installs properly
-rw-r--r-- | text.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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: |