bundles/vmhost: only install qemu-kvm for debian buster and older
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-05-23 14:54:47 +02:00
parent 46f7aa93ef
commit 3a44a9fbfb
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -5,7 +5,6 @@ defaults = {
'libvirt-daemon-system': {},
'netcat-openbsd': {}, # for virt-manager
'qemu-utils': {},
'qemu-kvm': {},
'qemu-system-x86': {},
},
},
@ -24,5 +23,8 @@ defaults = {
},
}
if node.os == 'debian' and node.os_version[0] < 11:
defaults['apt']['packages']['qemu-kvm'] = {}
if node.has_bundle('zfs'):
defaults['apt']['packages']['libvirt-daemon-driver-storage-zfs'] = {}