summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-02-25 00:09:38 +0000
committerJeremy Katz <katzj@redhat.com>2004-02-25 00:09:38 +0000
commit2097dcfbccc6d1ff9c03338f7fe833de5128782a (patch)
tree05a5fce578dfb41b83be9925f937a2138323425b /packages.py
parent3ac45f2faec8a70b9e45d3ab57d83f9cfdc759f5 (diff)
downloadanaconda-2097dcfbccc6d1ff9c03338f7fe833de5128782a.tar.gz
anaconda-2097dcfbccc6d1ff9c03338f7fe833de5128782a.tar.xz
anaconda-2097dcfbccc6d1ff9c03338f7fe833de5128782a.zip
we don't really care if the child exits before us or whatever
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index 9a1028e62..3fc92abd7 100644
--- a/packages.py
+++ b/packages.py
@@ -1262,7 +1262,11 @@ def setFileCons(instPath):
log("set fc of %s to %s" %(f, ret))
sys.exit(0)
- (pid, rc) = os.waitpid(child, 0)
+ try:
+ os.waitpid(child, 0)
+ except OSError, (num, msg):
+ pass
+
return