fedora-disk-dch: Factor out disk layout
This will allow the `fedora-rpi-common.ks` kickstart fragment to be more composeable, making it usable for systems other than "servers" that may need a different disk layout.
This commit is contained in:
9
fedora-disk-dch.ks
Normal file
9
fedora-disk-dch.ks
Normal file
@@ -0,0 +1,9 @@
|
||||
# vim: set ft=sh :
|
||||
part /boot/efi --fstype vfat --size 128 --label RASPBERRYPI
|
||||
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 3072 --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
|
||||
Reference in New Issue
Block a user