summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2005-12-14 16:17:53 +0000
committerDavid Cantrell <dcantrell@redhat.com>2005-12-14 16:17:53 +0000
commit401995b204f8d4c46b6c0af98573fba3248fce7b (patch)
tree3a37539f06b53babd27e228566cbe88f6590d7fa /iutil.py
parent90d4854e1f67a4a263be00ea91ff82ac2744d2aa (diff)
downloadanaconda-401995b204f8d4c46b6c0af98573fba3248fce7b.tar.gz
anaconda-401995b204f8d4c46b6c0af98573fba3248fce7b.tar.xz
anaconda-401995b204f8d4c46b6c0af98573fba3248fce7b.zip
* iutil.py (execWithRedirect): Not the right place to write out
the vnc shell pid.
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/iutil.py b/iutil.py
index 7993931b1..05848ea03 100644
--- a/iutil.py
+++ b/iutil.py
@@ -93,12 +93,6 @@ def execWithRedirect(command, argv, stdin = 0, stdout = 1, stderr = 2,
pass
os._exit(1)
- else:
- vncpidfl = "/tmp/vncshell.pid"
- if os.path.exists(vncpidfl) and os.path.isfile(vncpidfl):
- pf = open(vncpidfl, "a")
- pf.write("%s\n" %(childpid))
- pf.close()
if newPgrp:
os.setpgid(childpid, childpid)