summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-19 04:09:10 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-19 04:09:10 +0000
commit97c44e24ad6ddf3e45ce14038af53d93e89f8999 (patch)
treef9a7109a2c7d0a2773978864b6932c996938ea3f /rescue.py
parent4f4a93c00fe2e46c9901895d58ddcff1ad2e5736 (diff)
downloadanaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.tar.gz
anaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.tar.xz
anaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.zip
sys.exit -> os._exit in children (from msw)
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index c4ac197f4..3915cdf9b 100644
--- a/rescue.py
+++ b/rescue.py
@@ -62,7 +62,7 @@ def makeMtab(instPath, theFsset):
f = open("/etc/mtab", "w+")
f.write(theFsset.mtab())
f.close()
- sys.exit(0)
+ os._exit(0)
# make sure they have a resolv.conf in the chroot
def makeResolvConf(instPath):