From c0d5288d1fe5a38ad076edde3ed14306f982ad33 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 22 Sep 2022 10:30:22 +0200 Subject: [PATCH] ci-automation: Fix link to previous old LTS image We can just hardcode it here, because these scripts will be only used for running the tests on the old LTS version. A proper fix maybe will come later. --- ci-automation/vendor-testing/qemu_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/vendor-testing/qemu_update.sh b/ci-automation/vendor-testing/qemu_update.sh index 1ce875f684..83af711200 100755 --- a/ci-automation/vendor-testing/qemu_update.sh +++ b/ci-automation/vendor-testing/qemu_update.sh @@ -35,7 +35,7 @@ if [ -f tmp/flatcar_production_image_previous.bin ] ; then else echo "++++ ${CIA_TESTSCRIPT}: downloading flatcar_production_image_previous.bin from previous ${CIA_CHANNEL} ++++" rm -f tmp/flatcar_production_image_previous.bin.bz2 - curl -fsSLO --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 "https://${CIA_CHANNEL}.release.flatcar-linux.net/${CIA_ARCH}-usr/current/flatcar_production_image.bin.bz2" + curl -fsSLO --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 "https://${CIA_CHANNEL}.release.flatcar-linux.net/${CIA_ARCH}-usr/current-2021/flatcar_production_image.bin.bz2" mv flatcar_production_image.bin.bz2 tmp/flatcar_production_image_previous.bin.bz2 lbunzip2 -k -f tmp/flatcar_production_image_previous.bin.bz2 fi