Introduce new variable: ONE_PARTITION for indicating single-partition installations
[bootmanager.git] / source / steps / InstallPartitionDisks.py
index fabb939..e713bed 100644 (file)
@@ -131,7 +131,7 @@ def Run( vars, log ):
     utils.sysexec( "lvcreate -L%s -nswap planetlab" % SWAP_SIZE, log )
 
     # check if we want a separate partition for VMs
-    one_partition = (ROOT_SIZE == "-1")
+    one_partition = vars['ONE_PARTITION']=='1'
     if (one_partition):
         remaining_extents= get_remaining_extents_on_vg( vars, log )
         utils.sysexec( "lvcreate -l%s -nroot planetlab" % remaining_extents, log )