summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--ChangeLog5
-rw-r--r--iutil.py6
2 files changed, 5 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d1c52b03f..766c43840 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-14 David Cantrell <dcantrell@redhat.com>
+
+ * iutil.py (execWithRedirect): Not the right place to write out
+ the vnc shell pid.
+
2005-12-14 Paul Nasrat <pnasrat@redhat.com>
* yuminstall.py (AnacondaYum.__init__): whiteout is now a module
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)