This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.13
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.13 by this push:
new d43b499 systemvmtemplate: Fix Debian 9 iso url (#3582)
d43b499 is described below
commit d43b4994292619775e8a9b88d41a09efe30efd9f
Author: David Passante <[email protected]>
AuthorDate: Tue Sep 10 18:21:05 2019 +0200
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 083a66c..9dab2ee 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",