diff options
-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) |