summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)