From 3758c1119a0e9ab698e6d1df6eaa4beec109cefd Mon Sep 17 00:00:00 2001 From: Robert Bailey Date: Wed, 12 Oct 2016 13:43:47 -0700 Subject: [PATCH] Download the coreos_production_qemu_image over SSL. --- cluster/libvirt-coreos/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/libvirt-coreos/util.sh b/cluster/libvirt-coreos/util.sh index c3a6fb6b88..d3bf10c5e1 100644 --- a/cluster/libvirt-coreos/util.sh +++ b/cluster/libvirt-coreos/util.sh @@ -152,7 +152,7 @@ function initialize-pool { virsh pool-create-as $POOL dir --target "$POOL_PATH" fi - wget -N -P "$ROOT" http://${COREOS_CHANNEL:-alpha}.release.core-os.net/amd64-usr/current/coreos_production_qemu_image.img.bz2 + wget -N -P "$ROOT" https://${COREOS_CHANNEL:-alpha}.release.core-os.net/amd64-usr/current/coreos_production_qemu_image.img.bz2 if [[ "$ROOT/coreos_production_qemu_image.img.bz2" -nt "$POOL_PATH/coreos_base.img" ]]; then bunzip2 -f -k "$ROOT/coreos_production_qemu_image.img.bz2" virsh vol-delete coreos_base.img --pool $POOL 2> /dev/null || true