Debian: use QEMU 5.0 from buster-backports

This will allow us to make sure of all updates.

'qemu-kvm' got dropped in Debian

Change-Id: If09a8188030baa284dd353b1c3f830d78c5091b7
This commit is contained in:
Marcin Juszkiewicz 2020-08-22 17:57:32 +02:00
parent f64ecd98e8
commit 84038e337a
2 changed files with 11 additions and 1 deletions

View File

@ -41,3 +41,8 @@ Pin-Priority: 700
Package: openvswitch*
Pin: release n=buster
Pin-Priority: 700
# we want newer QEMU
Package: qemu*
Pin: version 1:5.0*
Pin-Priority: 700

View File

@ -71,8 +71,13 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% elif base_arch == "x86_64" %}
{% set nova_libvirt_packages = nova_libvirt_packages + [
'ovmf',
'qemu-kvm'
] %}
# NOTE(hrw): Debian merged 'qemu-kvm' into 'qemu-system-ARCH' in 5.0-9
{% if base_distro == 'ubuntu' %}
{% set nova_libvirt_packages = nova_libvirt_packages + [
'qemu-kvm'
] %}
{% endif %}
{% endif %}
{% if base_arch in ['aarch64', 'x86_64'] %}