diff options
author | David Cantrell <dcantrell@redhat.com> | 2005-12-14 16:17:53 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2005-12-14 16:17:53 +0000 |
commit | 401995b204f8d4c46b6c0af98573fba3248fce7b (patch) | |
tree | 3a37539f06b53babd27e228566cbe88f6590d7fa | |
parent | 90d4854e1f67a4a263be00ea91ff82ac2744d2aa (diff) | |
download | anaconda-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-- | ChangeLog | 5 | ||||
-rw-r--r-- | iutil.py | 6 |
2 files changed, 5 insertions, 6 deletions
@@ -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 @@ -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) |