diff options
-rwxr-xr-x | partition.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/partition.sh b/partition.sh index 5118811..a1c7f2d 100755 --- a/partition.sh +++ b/partition.sh @@ -72,10 +72,10 @@ vgchange -ay $vg # Format the partitions -mkfs.ext2 -q -E resize=512M -m1 -b 4096 $part_boot -mkfs.ext4 -q -b 4096 /dev/$vg/root -mkfs.ext4 -q -b 4096 /dev/$vg/home -mkswap /dev/$vg/swap +fripost_mkfs ext2 $part_boot -E resize=512M -m1 -b 4096 +fripost_mkfs ext4 /dev/$vg/root -b 4096 +fripost_mkfs ext4 /dev/$vg/home -b 4096 +mkswap /dev/$vg/swap # Stuff the fstab and mount the devices in the target |