From 82386e624e548846ea04a30b9627403041f339d6 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Mon, 7 Dec 2020 13:01:04 +0100 Subject: [PATCH] Change default ALPINE_MIRROR to http://dl-cdn.alpinelinux.org/alpine Fixes #12 --- alpine-make-vm-image | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine-make-vm-image b/alpine-make-vm-image index eeeec50..65eb146 100755 --- a/alpine-make-vm-image +++ b/alpine-make-vm-image @@ -45,7 +45,7 @@ # # -m --mirror-uri ALPINE_MIRROR URI of the Aports mirror to fetch packages; used only # when --repositories-file is not specified. Default is -# https://nl.alpinelinux.org/alpine. +# http://dl-cdn.alpinelinux.org/alpine. # # -C --no-cleanup (CLEANUP) Don't umount and disconnect image when done. # @@ -341,7 +341,7 @@ while [ $# -gt 0 ]; do done : ${ALPINE_BRANCH:="latest-stable"} -: ${ALPINE_MIRROR:="https://nl.alpinelinux.org/alpine"} +: ${ALPINE_MIRROR:="http://dl-cdn.alpinelinux.org/alpine"} : ${CLEANUP:="yes"} : ${IMAGE_FORMAT:=} : ${IMAGE_SIZE:="2G"}