From b14e8362387775ab4e46ab0f3a65a8a638394171 Mon Sep 17 00:00:00 2001 From: JuliusLongmind <5893405+JuliusLongmind@users.noreply.github.com> Date: Mon, 3 Oct 2022 20:58:09 +0200 Subject: [PATCH] Checksum links has been fixed --- arch-template.json | 2 +- wrapacker | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch-template.json b/arch-template.json index 6019930..e36b8d6 100644 --- a/arch-template.json +++ b/arch-template.json @@ -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", diff --git a/wrapacker b/wrapacker index 024296d..4595a62 100755 --- a/wrapacker +++ b/wrapacker @@ -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}"