X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FInstallPartitionDisks.py;h=48884e4e3285b46fa63a340a8cd0e5932bea1b59;hb=024a094d4d296bd2b80ab85d253a995055f88c0d;hp=5ca7507696aa4c619b1ae2582b96df5c4829a2d5;hpb=38b7fdabf9fe462f585acce3e5eef35d2e7c436d;p=bootmanager.git diff --git a/source/steps/InstallPartitionDisks.py b/source/steps/InstallPartitionDisks.py index 5ca7507..48884e4 100644 --- a/source/steps/InstallPartitionDisks.py +++ b/source/steps/InstallPartitionDisks.py @@ -41,7 +41,9 @@ def Run( vars, log ): if( len(INSTALL_BLOCK_DEVICES) == 0 ): raise ValueError, "INSTALL_BLOCK_DEVICES is empty" - ROOT_SIZE= vars["ROOT_SIZE"] + # use vs_ROOT_SIZE or lxc_ROOT_SIZE as appropriate + varname=vars['virt']+"_ROOT_SIZE" + ROOT_SIZE= vars[varname] if ROOT_SIZE == "" or ROOT_SIZE == 0: raise ValueError, "ROOT_SIZE invalid" @@ -128,19 +130,22 @@ def Run( vars, log ): # create swap logical volume utils.sysexec( "lvcreate -L%s -nswap planetlab" % SWAP_SIZE, log ) - # create root logical volume - utils.sysexec( "lvcreate -L%s -nroot planetlab" % ROOT_SIZE, log ) - - if vars['NODE_MODEL_OPTIONS'] & ModelOptions.RAWDISK and VSERVERS_SIZE != "-1": - utils.sysexec( "lvcreate -L%s -nvservers planetlab" % VSERVERS_SIZE, log ) + # check if we want a separate partition for VMs + one_partition = (ROOT_SIZE == "-1") + if (one_partition): remaining_extents= get_remaining_extents_on_vg( vars, log ) - utils.sysexec( "lvcreate -l%s -nrawdisk planetlab" % remaining_extents, log ) + utils.sysexec( "lvcreate -l%s -nroot planetlab" % remaining_extents, log ) else: - # create vservers logical volume with all remaining space - # first, we need to get the number of remaining extents we can use - remaining_extents= get_remaining_extents_on_vg( vars, log ) - - utils.sysexec( "lvcreate -l%s -nvservers planetlab" % remaining_extents, log ) + utils.sysexec( "lvcreate -L%s -nroot planetlab" % ROOT_SIZE, log ) + if vars['NODE_MODEL_OPTIONS'] & ModelOptions.RAWDISK and VSERVERS_SIZE != "-1": + utils.sysexec( "lvcreate -L%s -nvservers planetlab" % VSERVERS_SIZE, log ) + remaining_extents= get_remaining_extents_on_vg( vars, log ) + utils.sysexec( "lvcreate -l%s -nrawdisk planetlab" % remaining_extents, log ) + else: + # create vservers logical volume with all remaining space + # first, we need to get the number of remaining extents we can use + remaining_extents= get_remaining_extents_on_vg( vars, log ) + utils.sysexec( "lvcreate -l%s -nvservers planetlab" % remaining_extents, log ) # activate volume group (should already be active) #utils.sysexec( TEMP_PATH + "vgchange -ay planetlab", log ) @@ -159,17 +164,34 @@ def Run( vars, log ): # reserved-blocks-percentages filesystems = {"root":5,"vservers":0} - # make the file systems - for fs in filesystems.keys(): - # get the reserved blocks percentage - rbp = filesystems[fs] - devname = PARTITIONS[fs] + # ROOT filesystem is always with ext2 + fs = 'root' + rbp = filesystems[fs] + devname = PARTITIONS[fs] + log.write("formatting %s partition (%s)%s.\n" % (fs,devname,txt)) + utils.sysexec( "mkfs.ext2 -q %s -m %d -j %s" % (option,rbp,devname), log ) + # disable time/count based filesystems checks + utils.sysexec_noerr( "tune2fs -c -1 -i 0 %s" % devname, log) + + # VSERVER filesystem with btrfs to support snapshoting and stuff + fs = 'vservers' + rbp = filesystems[fs] + devname = PARTITIONS[fs] + if vars['virt']=='vs': log.write("formatting %s partition (%s)%s.\n" % (fs,devname,txt)) utils.sysexec( "mkfs.ext2 -q %s -m %d -j %s" % (option,rbp,devname), log ) - - # disable time/count based filesystems checks - for filesystem in ("root","vservers"): - utils.sysexec_noerr( "tune2fs -c -1 -i 0 %s" % PARTITIONS[filesystem], log) + # disable time/count based filesystems checks + utils.sysexec_noerr( "tune2fs -c -1 -i 0 %s" % devname, log) + else: + log.write("formatting %s btrfs partition (%s).\n" % (fs,devname)) + # early BootCD's seem to come with a version of mkfs.btrfs that does not support -f + # let's check for that before invoking it + mkfs="mkfs.btrfs" + if os.system("mkfs.btrfs --help 2>&1 | grep force")==0: + mkfs+=" -f" + mkfs+=" %s"%devname + utils.sysexec( mkfs, log ) + # as of 2013/02 it looks like there's not yet an option to set fsck frequency with btrfs # save the list of block devices in the log log.write( "Block devices used (in lvm): %s\n" % repr(used_devices)) @@ -254,27 +276,37 @@ def single_partition_device_1_x ( device, vars, log): def single_partition_device_2_x ( device, vars, log): try: log.write("Using pyparted 2.x\n") - # wipe the old partition table - utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log ) - # get the device - dev= parted.Device(device) + + # Thierry june 2012 -- for disks larger than 2TB + # calling this with part_type='msdos' would fail at the maximizePartition stage # create a new partition table - disk= parted.freshDisk(dev,'msdos') - # create one big partition on each block device - constraint= parted.constraint.Constraint (device=dev) - geometry = parted.geometry.Geometry (device=dev, start=0, end=1) - fs = parted.filesystem.FileSystem (type="ext2",geometry=geometry) - new_part= parted.partition.Partition (disk, type=parted.PARTITION_NORMAL, - fs=fs, geometry=geometry) - # make it an lvm partition - new_part.setFlag(parted.PARTITION_LVM) - # actually add the partition to the disk - disk.addPartition(new_part, constraint) - disk.maximizePartition(new_part,constraint) - disk.commit() - print >>log, 'Current disk for %s'%device,disk - print >>log, 'Current dev for %s'%device,dev - del disk + def partition_table (device, part_type, fs_type): + # wipe the old partition table + utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log ) + # get the device + dev= parted.Device(device) + disk = parted.freshDisk(dev,part_type) + # create one big partition on each block device + constraint= parted.constraint.Constraint (device=dev) + geometry = parted.geometry.Geometry (device=dev, start=0, end=1) + fs = parted.filesystem.FileSystem (type=fs_type,geometry=geometry) + new_part= parted.partition.Partition (disk, type=parted.PARTITION_NORMAL, + fs=fs, geometry=geometry) + # make it an lvm partition + new_part.setFlag(parted.PARTITION_LVM) + # actually add the partition to the disk + disk.addPartition(new_part, constraint) + disk.maximizePartition(new_part,constraint) + disk.commit() + log.write ("Current disk for %s - partition type %s\n%s\n"%(device,part_type,disk)) + log.write ("Current dev for %s\n%s\n"%(device,dev)) + del disk + + try: + partition_table (device, 'msdos', 'ext2') + except: + partition_table (device, 'gpt', 'ext2') + except Exception, e: log.write( "Exception inside single_partition_device_2_x : %s\n" % str(e) ) import traceback