diff options
author | Erik Troan <ewt@redhat.com> | 1999-12-16 20:47:43 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-12-16 20:47:43 +0000 |
commit | ceae8d6f0788e37a392d1c595259c5289b7202c5 (patch) | |
tree | bb8d7dbc774867687839ab6d3af071c2e21b1c68 /text.py | |
parent | fd5264b5d48f69447b13053cd6e3f8244c2b48fe (diff) | |
download | anaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.tar.gz anaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.tar.xz anaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.zip |
expert mode enables lilo screens in workstation/server installs
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -217,13 +217,13 @@ class InstallPathWindow: intf.steps = intf.commonSteps + intf.installSteps todo.upgrade = 0 if (choice == 0 and orig != 0): - todo.setClass(installclass.GNOMEWorkstation()) + todo.setClass(installclass.GNOMEWorkstation(todo.expert)) elif (choice == 1 and orig != 1): - todo.setClass(installclass.KDEWorkstation()) + todo.setClass(installclass.KDEWorkstation(todo.expert)) elif (choice == 2 and orig != 2): - todo.setClass(installclass.Server()) + todo.setClass(installclass.Server(todo.expert)) elif (choice == 3 and orig != 3): - todo.setClass(installclass.CustomInstall()) + todo.setClass(installclass.CustomInstall(todo.expert)) return INSTALL_OK class UpgradeExamineWindow: |