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 /anaconda | |
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 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -300,9 +300,9 @@ if forceMount: if kickstart: instClass = Kickstart(kickstart) elif reconfigOnly: - instClass = ReconfigStation() + instClass = ReconfigStation(expert) else: - instClass = DefaultInstall() + instClass = DefaultInstall(expert) if lang: instClass.addToSkipList("language") |