From 35b90f77e0953883ab77309468b259db9f9f0759 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sun, 24 Jul 2022 01:11:03 +0100 Subject: [PATCH] changed haiku mirror as cdn no longer resolves (#460) NY set as it seemed good enough. Other working options left in comments in case --- quickget | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 025e87a..63ac319 100755 --- a/quickget +++ b/quickget @@ -981,8 +981,10 @@ function get_ghostbsd() { function get_haiku() { local EDITION="${1:-}" local ISO="haiku-${RELEASE}-${EDITION}-anyboot.iso" - local URL="https://cdn.haiku-os.org/haiku-release/${RELEASE}" - local HASH="" + # local URL="https://cdn.haiku-os.org/haiku-release/${RELEASE}" # domain gone + local URL="http://mirror.rit.edu/haiku/${RELEASE}" # NY, USA + # local URL="https://mirrors.tnonline.net/haiku/haiku-release/${RELEASE}" # Sweden + # local URL="https://mirror.aarnet.edu.au/pub/haiku/${RELEASE}" # Aus HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f4) echo "${URL}/${ISO} ${HASH}"