18 lines
581 B
Bash
18 lines
581 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
|
|
|
|
%include https://git.pyrocufflink.net/infra/kickstart/raw/branch/master/fedora-disk-dch.ks
|
|
%include https://git.pyrocufflink.net/infra/kickstart/raw/branch/master/fedora-common.ks
|
|
|
|
%packages
|
|
qemu-guest-agent
|
|
%end
|
|
|
|
%include https://git.pyrocufflink.net/infra/kickstart/raw/branch/master/autoprovision.ks
|