summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-07-26 16:47:36 +0000
committerMatt Wilson <msw@redhat.com>2000-07-26 16:47:36 +0000
commit1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63 (patch)
tree0661557e213e46e660c7217f302c4413aabf91c0 /anaconda
parent8795634080254cac6d4b537769d2a3294f5663fd (diff)
downloadanaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.tar.gz
anaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.tar.xz
anaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.zip
more fallbacks
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda6
1 files changed, 5 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 84389c543..7a8c81fbf 100755
--- a/anaconda
+++ b/anaconda
@@ -272,7 +272,11 @@ if (display_mode == 'g'):
os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i)
except:
pass
- from gui import InstallInterface
+ try:
+ from gui import InstallInterface
+ except:
+ print "GUI installer startup failed, falling back to text mode."
+ from text import InstallInterface
elif (display_mode == 't'):
from text import InstallInterface
else: