diff options
| author | spmfox <spmfox@foxwd.com> | 2025-09-13 22:00:46 -0400 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2025-09-13 22:00:46 -0400 |
| commit | d5e8c9dc712ce42e253143c444237f4fdfe664dc (patch) | |
| tree | d45bad83042a0b8859ef0c823d0583a87a4d3077 /roles/libvirt/templates/kickstart/el10.ks | |
| parent | b678d617fcef2e9b7dd59ae1a569b234da4551f7 (diff) | |
updating kickstart to use the full disk as root filesystem
Diffstat (limited to 'roles/libvirt/templates/kickstart/el10.ks')
| -rw-r--r-- | roles/libvirt/templates/kickstart/el10.ks | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/roles/libvirt/templates/kickstart/el10.ks b/roles/libvirt/templates/kickstart/el10.ks index 253496b..a9d2f80 100644 --- a/roles/libvirt/templates/kickstart/el10.ks +++ b/roles/libvirt/templates/kickstart/el10.ks @@ -26,9 +26,13 @@ cdrom firstboot --enable ignoredisk --only-use=vda -autopart -# Partition clearing information -clearpart --none --initlabel +clearpart --all --initlabel + +part /boot --fstype="xfs" --size=1024 +part pv.01 --grow --size=1 +volgroup root_vg pv.01 +logvol / --fstype="xfs" --name=root --vgname=root_vg --grow --size=1 +logvol swap --fstype="swap" --name=swap --vgname=root_vg --size=3072 # System timezone timezone {{ libvirt_kickstart_timezone }} --utc |
