File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
libvirt/parameters/osfinger
test/integration/share/libraries Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
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
+ ...
Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ def build_centos_packages
134
134
135
135
def build_ubuntu_packages
136
136
case inspec . system . platform [ :release ]
137
+ when /^22/
138
+ { 'qemu' => [ 'qemu-system-x86' ] }
137
139
when /^16/
138
140
{ 'libvirt' => [ 'libvirt-bin' ] }
139
141
else
You can’t perform that action at this time.
0 commit comments