summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-20 16:33:43 +0000
committerMatt Wilson <msw@redhat.com>1999-08-20 16:33:43 +0000
commit2b4416c172646ce88f026d7ed7aaaf7b2b1c57db (patch)
treebec47600db331e7ade98d5d118292cceb8460e06 /iutil.py
parentaa7b059d031379c4d881345c23deea9829430323 (diff)
downloadanaconda-2b4416c172646ce88f026d7ed7aaaf7b2b1c57db.tar.gz
anaconda-2b4416c172646ce88f026d7ed7aaaf7b2b1c57db.tar.xz
anaconda-2b4416c172646ce88f026d7ed7aaaf7b2b1c57db.zip
o boot disk prompt
o check to make sure filesystems have bootable flag for lilo "other" images o check for kernel images in lilo config o return status for execwithredirect
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iutil.py b/iutil.py
index fd007b2f3..6a805f335 100644
--- a/iutil.py
+++ b/iutil.py
@@ -37,6 +37,6 @@ def execWithRedirect(command, argv, stdin = 0, stdout = 1, stderr = 2,
os.execv(command, argv)
sys.exit(1)
- status = os.waitpid(childpid, 0)
-
+ (pid, status) = os.waitpid(childpid, 0)
+ return status