From: "Brian C. Lane" bcl@redhat.com
Otherwise it will try to unmount things that shouldn't be unmounted. --- blivet/osinstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blivet/osinstall.py b/blivet/osinstall.py index 5918904..bb7c204 100644 --- a/blivet/osinstall.py +++ b/blivet/osinstall.py @@ -617,8 +617,8 @@ def umountFilesystems(self, swapoff=True): (device.format.type == "swap" and not swapoff): continue
+ # Unmount the devices device.format.teardown() - device.teardown()
self.active = False