diff options
author | Karsten Hopp <karsten@redhat.de> | 2004-06-16 13:29:54 +0000 |
---|---|---|
committer | Karsten Hopp <karsten@redhat.de> | 2004-06-16 13:29:54 +0000 |
commit | 4d42471661be5f5851d6b749dce0ca0f391ee25b (patch) | |
tree | 99e5c1355a863d078ee848f488e94063e10f6d1a /anaconda | |
parent | 98f752cbbc165db3138efcd94b4222915a92444d (diff) | |
download | anaconda-4d42471661be5f5851d6b749dce0ca0f391ee25b.tar.gz anaconda-4d42471661be5f5851d6b749dce0ca0f391ee25b.tar.xz anaconda-4d42471661be5f5851d6b749dce0ca0f391ee25b.zip |
- enable GUI/VNC installs on mainframe again, there's no Xorg binary
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -840,7 +840,7 @@ time.sleep(3) # now determine if we're going to run in GUI or TUI mode # # if no X server, we have to use text mode -if not flags.test and not os.access("/mnt/runtime/usr/X11R6/bin/Xorg", os.X_OK): +if not flags.test and (iutil.getArch() != "s390" and not os.access("/mnt/runtime/usr/X11R6/bin/Xorg", os.X_OK)): dup_log(_("Graphical installation not available... " "Starting text mode.")) time.sleep(2) |