Files
vms/cellar/centos-9stream-x86_64.pkrvars.hcl.sh
T
Greg HellingsandGitHub 0a3832d2c4 Add CentOS (#12)
* Add CentOS 7

* Fix rawhide boot

* Test locale versions
2022-06-22 10:00:04 -05:00

25 lines
686 B
Bash
Executable File

#!/usr/bin/env bash
# Name of the file to write out
name="${0%.sh}"
checksums="$(mktemp)"
until curl -f -L -o "${checksums}" "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-boot.iso.SHA256SUM"; do
sleep 1
done
sha="$(cat "${checksums}" | grep SHA256 | cut -d' ' -f 4)"
cat << EOF > "${name}"
distro = "centos"
version = "9stream"
iso = {
url = "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-boot.iso"
checksum = "${sha}"
}
boot_command = [
"<esc><wait>",
"linux net.ifnames=0 biosdevnames=0 inst.ks=http://{{.HTTPIP}}:{{.HTTPPort}}/centos/9stream-x86_64.ks console=ttyS0",
"<enter>"
]
EOF