diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-20 16:33:43 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-20 16:33:43 +0000 |
commit | 2b4416c172646ce88f026d7ed7aaaf7b2b1c57db (patch) | |
tree | bec47600db331e7ade98d5d118292cceb8460e06 /iutil.py | |
parent | aa7b059d031379c4d881345c23deea9829430323 (diff) | |
download | anaconda-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |