bundles/vmhost: only install qemu-kvm for debian buster and older
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
46f7aa93ef
commit
3a44a9fbfb
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,6 @@ defaults = {
|
||||||
'libvirt-daemon-system': {},
|
'libvirt-daemon-system': {},
|
||||||
'netcat-openbsd': {}, # for virt-manager
|
'netcat-openbsd': {}, # for virt-manager
|
||||||
'qemu-utils': {},
|
'qemu-utils': {},
|
||||||
'qemu-kvm': {},
|
|
||||||
'qemu-system-x86': {},
|
'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'):
|
if node.has_bundle('zfs'):
|
||||||
defaults['apt']['packages']['libvirt-daemon-driver-storage-zfs'] = {}
|
defaults['apt']['packages']['libvirt-daemon-driver-storage-zfs'] = {}
|
||||||
|
|
Loading…
Reference in a new issue