22 lines
785 B
Bash
22 lines
785 B
Bash
# vim: set ft=sh sw=4 ts=4 sts=4 et :
|
|
|
|
# Create the "standard" disk layout using only the first disk
|
|
# Other disks are left alone in case they already contain data, e.g.
|
|
# migrated from another system.
|
|
bootloader --location mbr
|
|
clearpart --all --initlabel --drives vda
|
|
reqpart
|
|
part /boot --fstype ext4 --size=512 --ondisk vda
|
|
part pv.01 --size=1 --grow --ondisk vda
|
|
volgroup fedora pv.01
|
|
logvol / --fstype ext4 --name=root --vgname=fedora --size=4096
|
|
logvol /home --fstype ext4 --name=home --vgname=fedora --size=100
|
|
logvol /var --fstype ext4 --name=var --vgname=fedora --size=1024 --grow
|
|
logvol /var/log --fstype ext4 --name=var_log --vgname=fedora --size=1024
|
|
|
|
%include https://git.pyrocufflink.net/infra/kickstart/raw/branch/master/fedora-common.ks
|
|
|
|
%packages
|
|
qemu-guest-agent
|
|
%end
|