diff options
author | Mike Fulbright <msf@redhat.com> | 2000-01-14 17:10:25 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-01-14 17:10:25 +0000 |
commit | 73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2 (patch) | |
tree | a1a8e24e520ca224c76a3ac4ae94c0db4818b4c2 /anaconda | |
parent | 33bc2bf3546528c18cde86f48773553adb4e55ce (diff) | |
download | anaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.tar.gz anaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.tar.xz anaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.zip |
fixed exception when user elected not to reconfig
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -351,5 +351,7 @@ except: pdb.post_mortem (tb) os._exit (1) -todo.fstab.umountFilesystems(rootPath, ignoreErrors = 1) +if not todo.reconfigOnly: + todo.fstab.umountFilesystems(rootPath, ignoreErrors = 1) + del intf |