From bfd7a05ff15d614e90608ccce524acfc88a44aeb Mon Sep 17 00:00:00 2001 From: Dani Llewellyn Date: Mon, 17 Oct 2022 20:07:15 +0100 Subject: [PATCH] OpenBSD: Fix download of versions 6.8 & 6.9 The CDN we were using in QuickGet only carries version 7.0 and 7.1. By switching to a different CDN provided for the OpenBSD Community (listed on https://www.openbsd.org/ftp.html) we can regain access to version 6.8 and 6.9. --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 23519b3..42b7782 100755 --- a/quickget +++ b/quickget @@ -1323,7 +1323,7 @@ function get_nixos() { function get_openbsd() { local HASH="" local ISO="install${RELEASE//\./}.iso" - local URL="https://cdn.openbsd.org/pub/OpenBSD/${RELEASE}/amd64" + local URL="https://mirror.leaseweb.com/pub/OpenBSD/${RELEASE}/amd64" HASH=$(wget -q -O- "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f4) echo "${URL}/${ISO} ${HASH}" }