summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-10-24 02:32:33 +0000
committerJeremy Katz <katzj@redhat.com>2007-10-24 02:32:33 +0000
commitede444a26f83797c0b188bc9f078775ad3c929b5 (patch)
tree05a1f770309e33ccb39e41e55156b43e3ead7224
parent1b7c7b543c54c2030497760ef8c002c12e7f9d09 (diff)
downloadanaconda-ede444a26f83797c0b188bc9f078775ad3c929b5.tar.gz
anaconda-ede444a26f83797c0b188bc9f078775ad3c929b5.tar.xz
anaconda-ede444a26f83797c0b188bc9f078775ad3c929b5.zip
2007-10-23 Jeremy Katz <katzj@redhat.com>
* anaconda (Anaconda): Fix for runinst with live images
-rw-r--r--ChangeLog4
-rwxr-xr-xanaconda2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d3a24578b..488d81ff7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-10-23 Jeremy Katz <katzj@redhat.com>
+
+ * anaconda (Anaconda): Fix for runinst with live images
+
2007-10-23 David Cantrell <dcantrell@redhat.com>
* network.py (Network.write): Set IPV6INIT for all cases (#328931).
diff --git a/anaconda b/anaconda
index 6d8e79d73..a9f8b4ed6 100755
--- a/anaconda
+++ b/anaconda
@@ -787,7 +787,7 @@ if __name__ == "__main__":
# 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 or flags.rootpath or x_already_set) and (rhpl.getArch() != "s390" and not os.access("/mnt/runtime/usr/bin/Xorg", os.X_OK)):
+ if not (flags.test or flags.rootpath or x_already_set) and (rhpl.getArch() != "s390" and not os.access("/usr/bin/Xorg", os.X_OK)):
stdoutLog.warning(_("Graphical installation not available... "
"Starting text mode."))
time.sleep(2)