mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
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.
This commit is contained in:
parent
c28db24184
commit
bfd7a05ff1
1 changed files with 1 additions and 1 deletions
2
quickget
2
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}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue