mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-16 13:13:09 +00:00
a01d22f6ef
This commit adds support for boot options, that can be passed from `hdds.json` to control the creation of the virtual machines, such as enabling of EFI based machines, boot order control, etc. It also adds EFI based machine to `hdds.json` and adds a kickstart file for such machine.
20 lines
568 B
Plaintext
20 lines
568 B
Plaintext
install
|
|
bootloader --location=mbr
|
|
network --bootproto=dhcp
|
|
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
repo --name=updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
timezone --utc America/New_York
|
|
clearpart --all
|
|
part /boot/efi --fstype=efi --grow --maxsize=200 --size=20
|
|
part /boot --fstype=ext4 --size=1024
|
|
part / --fstype=ext4 --size=17000
|
|
part swap --size=2000
|
|
rootpw weakpassword
|
|
poweroff
|
|
|
|
%packages
|
|
@core
|
|
%end
|