summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-01-14 17:10:25 +0000
committerMike Fulbright <msf@redhat.com>2000-01-14 17:10:25 +0000
commit73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2 (patch)
treea1a8e24e520ca224c76a3ac4ae94c0db4818b4c2 /anaconda
parent33bc2bf3546528c18cde86f48773553adb4e55ce (diff)
downloadanaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.tar.gz
anaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.tar.xz
anaconda-73c0e3a98cedfe6dc7f0c7a3c5cbe082d2fa73d2.zip
fixed exception when user elected not to reconfig
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda4
1 files changed, 3 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 1e6712d5a..67ac23a88 100755
--- a/anaconda
+++ b/anaconda
@@ -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