summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorJoel Granados Moreno <jgranado@redhat.com>2009-04-07 11:47:44 +0200
committerJoel Granados Moreno <jgranado@redhat.com>2009-04-10 12:57:57 +0200
commite5d57c3773cfc53326a363f8d19ea8ee5934184d (patch)
tree5c8b24f55a8a4ecb980b4a0deb9c50a3cfbe4f99 /storage/__init__.py
parent608ff0fa20956dfdecf1c63e6881fcb9308a9742 (diff)
downloadanaconda-e5d57c3773cfc53326a363f8d19ea8ee5934184d.tar.gz
anaconda-e5d57c3773cfc53326a363f8d19ea8ee5934184d.tar.xz
anaconda-e5d57c3773cfc53326a363f8d19ea8ee5934184d.zip
Setup the disks before partitioning as the nodes are needed.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 4f99fea15..4c365f776 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -163,6 +163,11 @@ def storageComplete(anaconda):
custom_buttons=[_("Go _back"),
_("_Write changes to disk")],
default = 0)
+
+ # Make sure that all is down, even the disks that we setup after popluate.
+ for disk in anaconda.id.storage.disks:
+ disk.teardown()
+
if rc == 0:
return DISPATCH_BACK