Checksum links has been fixed

This commit is contained in:
JuliusLongmind 2022-10-03 20:58:09 +02:00
parent d109efdedf
commit b14e836238
No known key found for this signature in database
GPG key ID: F006D94CA43401C3
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"variables": {
"iso_url": "https://mirrors.kernel.org/archlinux/iso/latest/archlinux-x86_64.iso",
"iso_checksum_url": "https://mirrors.kernel.org/archlinux/iso/latest/sha1sums.txt",
"iso_checksum_url": "https://mirrors.kernel.org/archlinux/iso/latest/sha256sums.txt",
"ssh_timeout": "20m",
"country": "US",
"write_zeros": "true",

View file

@ -278,7 +278,7 @@ else
country='US'
fi
ISO_CHECKSUM_URL="${MIRROR}/iso/latest/sha1sums.txt"
ISO_CHECKSUM_URL="${MIRROR}/iso/latest/sha256sums.txt"
ISO_NAME=$(curl -sL "$ISO_CHECKSUM_URL" | awk '/-x86_64.iso/{ print $2 }' | tail -n 1)
ISO_URL="${MIRROR}/iso/latest/${ISO_NAME}"