summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-07-07 18:32:27 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-07-07 18:32:27 +0000
commitcf651599a7f7fa89c5151c755637bc67b6641365 (patch)
treea9681681e62c269e8960ecc8cfa1e1dfa53ec6fe
parente93c3ef69b9ff4bfe55dafb7816186b76ade0ec5 (diff)
downloadanaconda-cf651599a7f7fa89c5151c755637bc67b6641365.tar.gz
anaconda-cf651599a7f7fa89c5151c755637bc67b6641365.tar.xz
anaconda-cf651599a7f7fa89c5151c755637bc67b6641365.zip
See ChangeLog.
-rw-r--r--ChangeLog4
-rw-r--r--rescue.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2846578bf..52aa1719b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-07 David Cantrell <dcantrell@redhat.com>
+
+ * rescue.py (runShell): Set stdout and stderr to /dev/console (#197315).
+
2006-07-07 Chris Lumens <clumens@redhat.com>
* rescue.py (runRescue): Move label reading to partedUtils.py.
diff --git a/rescue.py b/rescue.py
index 0c771c17b..a0c5cccfe 100644
--- a/rescue.py
+++ b/rescue.py
@@ -176,7 +176,7 @@ def runShell(screen, msg=""):
print
if os.path.exists("/bin/sh"):
- iutil.execWithRedirect("/bin/sh", ["-/bin/sh"])
+ iutil.execWithRedirect("/bin/sh", ["-/bin/sh"], stdout="/dev/console", stderr="/dev/console")
else:
print "Unable to find /bin/sh to execute! Not starting shell"
time.sleep(5)