---
storage/partitioning.py | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/storage/partitioning.py b/storage/partitioning.py
index 9f42a72..a71ba91 100644
--- a/storage/partitioning.py
+++ b/storage/partitioning.py
@@ -147,8 +147,6 @@ def _scheduleLVs(anaconda, devs):
# schedule the device for creation
anaconda.id.storage.createDevice(dev)
- # grow the new VG and its LVs
- growLVM(anaconda.id.storage)
def doAutoPartition(anaconda):
log.debug("doAutoPartition(%s)" % anaconda)
@@ -216,6 +214,9 @@ def doAutoPartition(anaconda):
if anaconda.id.storage.doAutoPart:
_scheduleLVs(anaconda, devs)
+ # grow LVs
+ growLVM(anaconda.id.storage)
+
# sanity check the collection of devices
log.warning("not sanity checking storage config because I don't know how yet")
# now do a full check of the requests
--
1.5.4.3