fix start and end for partitions

This commit is contained in:
Neil Hanlon 2023-01-24 20:07:37 -05:00
parent c067781730
commit be68d9891e
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 3 additions and 3 deletions

View File

@ -53,11 +53,11 @@ parted /dev/vda set 1 boot on
# Create a partition for /boot
parted /dev/vda mkpart primary xfs 100MiB 1100MiB
# Create a partition for prep
parted /dev/vda mkpart primary 4MiB 10.7GB
parted /dev/vda mkpart primary 1100MiB 4MiB
# Create a partition for bios_grub
parted /dev/vda mkpart primary 1MiB 10.7GB
parted /dev/vda mkpart primary 1105MiB 1MiB
# Create a partition for LVM
parted /dev/vda mkpart primary lvm 1100MiB 10.6GB
parted /dev/vda mkpart primary lvm 1106MiB 10.6GB
%end