diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2020-07-01 14:32:24 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2020-07-01 14:32:24 +0200 |
commit | 425c0172a203628f69ffd8f676432ef8b80d27b1 (patch) | |
tree | 342961186ddddd9c3028b74e96944111b9af0a3d /packer/templates | |
parent | 154d2b4db41b03c40c880b54b241f82102e99958 (diff) |
SPEC-3408: fix packer build
The current packer templates use 1604.4 which does not exists anymore,
so change it to 1604.6.
Furthermore, jessie-backports does not exists anymore and fail the whole
build.
Since apt-get-update fail (due to jessie-backports), the subsequent
"&& apt-get install" is never executed
Jessie-backports seems needed only for lava-tool which was replaced by
lavacli, so no regrets, remove it.
Change-Id: Iae1333a52a2dc20e9559462b4acf9a3b71696a08
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'packer/templates')
-rw-r--r-- | packer/templates/basebuild-local-kvm.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packer/templates/basebuild-local-kvm.json b/packer/templates/basebuild-local-kvm.json index 6882b710..2f77dd44 100644 --- a/packer/templates/basebuild-local-kvm.json +++ b/packer/templates/basebuild-local-kvm.json @@ -13,8 +13,8 @@ "builders": [ { "type": "qemu", - "iso_url": "http://releases.ubuntu.com/16.04/ubuntu-16.04.4-server-amd64.iso", - "iso_checksum": "6a7f31eb125a0b2908cf2333d7777c82", + "iso_url": "http://releases.ubuntu.com/16.04/ubuntu-16.04.6-server-amd64.iso", + "iso_checksum": "ac8a79a86a905ebdc3ef3f5dd16b7360", "iso_checksum_type": "md5", "output_directory": "output_ubuntu", |