mirror of
https://github.com/rocky-linux/createhdds.git
synced 2024-12-31 22:00:55 +00:00
25 lines
527 B
Text
25 lines
527 B
Text
|
bootloader --location=mbr
|
||
|
network --bootproto=dhcp
|
||
|
url --url="https://download.rockylinux.org/stg/rocky/8-LookAhead/BaseOS/x86_64/os/"
|
||
|
lang en_US.UTF-8
|
||
|
keyboard us
|
||
|
timezone --utc America/New_York
|
||
|
clearpart --all
|
||
|
autopart
|
||
|
rootpw weakpassword
|
||
|
poweroff
|
||
|
text
|
||
|
|
||
|
%packages
|
||
|
@core
|
||
|
targetcli
|
||
|
nfs-utils
|
||
|
dnsmasq
|
||
|
%end
|
||
|
|
||
|
%post
|
||
|
/usr/bin/sed -i 's/^mirrorlist/#mirrorlist/g' /etc/yum.repos.d/Rocky-*.repo
|
||
|
/usr/bin/sed -i 's,^#\(baseurl=http[s]*://\),\1,g' /etc/yum.repos.d/Rocky-*.repo
|
||
|
/usr/bin/echo "stg/rocky" > /etc/dnf/vars/contentdir
|
||
|
%end
|