From d43b4994292619775e8a9b88d41a09efe30efd9f Mon Sep 17 00:00:00 2001 From: David Passante Date: Tue, 10 Sep 2019 18:21:05 +0200 Subject: [PATCH] systemvmtemplate: Fix Debian 9 iso url (#3582) Since version 10.0.0 of Debian has become stable, the URL of the Debian 9.9.0 ISO files has changed from current to archive. The old URL returns a 404 and crash the build of systemvm templates. --- tools/appliance/systemvmtemplate/template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/appliance/systemvmtemplate/template.json b/tools/appliance/systemvmtemplate/template.json index 083a66c9cfa..9dab2ee30a3 100644 --- a/tools/appliance/systemvmtemplate/template.json +++ b/tools/appliance/systemvmtemplate/template.json @@ -38,7 +38,7 @@ "disk_interface": "virtio", "net_device": "virtio-net", - "iso_url": "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-9.9.0-amd64-netinst.iso", + "iso_url": "https://cdimage.debian.org/cdimage/archive/9.9.0/amd64/iso-cd/debian-9.9.0-amd64-netinst.iso", "iso_checksum": "42d9818abc4a08681dc0638f07e7aeb35d0c44646ab1e5b05a31a71d76c99da52b6192db9a3e852171ac78c2ba6b110b337c0b562c7be3d32e86a105023a6a0c", "iso_checksum_type": "sha512",