Files
kickstart/fedora-disk-dch.ks
Dustin C. Hatch 713a61db28 fedora-disk-dch: Add back /boot partition
I forgot the `reqpart` command only deals with the EFI system partition,
and does not manage `/boot`.
2025-03-04 19:33:49 -06:00

9 lines
449 B
Bash

# vim: set ft=sh :
part /boot --fstype ext4 --size 512 --label boot
part pv.01 --size 1 --grow
volgroup fedora pv.01
logvol / --fstype ext4 --name rootfs --vgname fedora --size 4096 --label rootfs
logvol /var --fstype ext4 --name var --vgname fedora --size 1024 --label var --grow
logvol /var/log --fstype ext4 --name var_log --vgname fedora --size 1024 --label var-log
logvol /home --fstype ext4 --name home --vgname fedora --size 100 --label home