summaryrefslogtreecommitdiffstats
path: root/pyanaconda/packaging/livepayload.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2013-01-08 18:23:47 -0600
committerDavid Lehman <dlehman@redhat.com>2013-01-28 13:13:20 -0600
commitab3226fba6869ffe1418cb992035719406a4214d (patch)
tree38fcb979a348a7ea5319854bfccf56be4f228678 /pyanaconda/packaging/livepayload.py
parent70d89aef92622c08932e5fe3da78f81e5bd36658 (diff)
downloadanaconda-ab3226fba6869ffe1418cb992035719406a4214d.tar.gz
anaconda-ab3226fba6869ffe1418cb992035719406a4214d.tar.xz
anaconda-ab3226fba6869ffe1418cb992035719406a4214d.zip
Handle sending program output to tty5 through the logging setup.
Diffstat (limited to 'pyanaconda/packaging/livepayload.py')
-rw-r--r--pyanaconda/packaging/livepayload.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyanaconda/packaging/livepayload.py b/pyanaconda/packaging/livepayload.py
index ac55bbeea..c7d8e84f9 100644
--- a/pyanaconda/packaging/livepayload.py
+++ b/pyanaconda/packaging/livepayload.py
@@ -105,8 +105,7 @@ class LiveImagePayload(ImagePayload):
args = ["-pogAXtlHrDx", "--exclude", "/dev/", "--exclude", "/proc/",
"--exclude", "/sys/", INSTALL_TREE+"/", ROOT_PATH]
try:
- rc = iutil.execWithRedirect(cmd, args,
- stderr="/dev/tty5", stdout="/dev/tty5")
+ rc = iutil.execWithRedirect(cmd, args)
except (OSError, RuntimeError) as e:
msg = None
err = str(e)