deploy: Reduce Fuel Master VM resources
[armband.git] / patches / fuel-agent / 0007-Add-fs-for-efi-partition.patch
index dbbde12..0fb9421 100644 (file)
@@ -35,20 +35,20 @@ index bc532b4..f092865 100644
          # has already been added. we need this to
          # get rid of md over all disks for /boot partition.
 @@ -321,10 +324,14 @@ class Nailgun(BaseDataDriver):
-                 LOG.debug('Adding bios_grub partition on disk %s: size=24' %
-                           disk['name'])
-                 parted.add_partition(size=24, flags=['bios_grub'])
--                # uefi partition (for future use)
--                LOG.debug('Adding UEFI partition on disk %s: size=200' %
-+                # uefi partition - added only once.
-+                if self._is_boot_disk(disk) and not self._esp_partition_done:
-+                    LOG.debug('Adding UEFI partition on disk %s: size=200' %
-                           disk['name'])
--                parted.add_partition(size=200, flags=['esp'])
-+                    prt = parted.add_partition(size=200, flags=['esp'])
-+                    partition_scheme.add_fs(device=prt.name, mount='/boot/efi',
-+                                            fs_type='vfat')
-+                    self._esp_partition_done = True
+             LOG.debug('Adding bios_grub partition on disk %s: size=24' %
+                       disk['name'])
+             parted.add_partition(size=24, flags=['bios_grub'])
+-            # uefi partition (for future use)
+-            LOG.debug('Adding UEFI partition on disk %s: size=200' %
++            # uefi partition - added only once.
++            if self._is_boot_disk(disk) and not self._esp_partition_done:
++                LOG.debug('Adding UEFI partition on disk %s: size=200' %
+                       disk['name'])
+-            parted.add_partition(size=200, flags=['esp'])
++                prt = parted.add_partition(size=200, flags=['esp'])
++                partition_scheme.add_fs(device=prt.name, mount='/boot/efi',
++                                        fs_type='vfat')
++                self._esp_partition_done = True
  
              LOG.debug('Looping over all volumes on disk %s' % disk['name'])
              for volume in disk['volumes']: