Skip to content

Commit 9a4abe6

Browse files
committed
feat(ubuntu-22.04): use updated qemu package name [skip ci]
``` Note, selecting 'qemu-system-x86' instead of 'qemu-kvm' ```
1 parent 32436b4 commit 9a4abe6

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
#
4+
# Setup variables specific to salt['config.get']('osfinger') == Ubuntu-22.04.
5+
# You just need to add the key:values for this `osfinger` that differ
6+
# from `defaults.yaml`.
7+
#
8+
# If you do not need to provide defaults via the `osfinger` config,
9+
# you can remove this file or provide at least an empty dict, e.g.
10+
# values: {}
11+
---
12+
values:
13+
qemu_pkg: qemu-system-x86
14+
...

test/integration/share/libraries/libvirt_packages.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ def build_centos_packages
134134

135135
def build_ubuntu_packages
136136
case inspec.system.platform[:release]
137+
when /^22/
138+
{ 'qemu' => ['qemu-system-x86'] }
137139
when /^16/
138140
{ 'libvirt' => ['libvirt-bin'] }
139141
else

0 commit comments

Comments
 (0)