Use https for downloading ubuntu images

Change-Id: I8d317582d454df2c418a7d3a37aea38dc7570391
This commit is contained in:
Benedikt Loeffler 2022-03-16 13:21:23 +01:00
parent 7d782ae1c9
commit 94fab70e58
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ set -o pipefail
shopt -s extglob
DIB_RELEASE=${DIB_RELEASE:-trusty}
DIB_CLOUD_IMAGES=${DIB_CLOUD_IMAGES:-http://cloud-images.ubuntu.com/$DIB_RELEASE/current}
DIB_CLOUD_IMAGES=${DIB_CLOUD_IMAGES:-https://cloud-images.ubuntu.com/$DIB_RELEASE/current}
if [ $DIB_RELEASE != "trusty" ] ; then
BASE_IMAGE_FILE=${BASE_IMAGE_FILE:-$DIB_RELEASE-server-cloudimg-$ARCH.squashfs}
else