File tree 12 files changed +27
-19
lines changed
test/integration/share/libraries 12 files changed +27
-19
lines changed Original file line number Diff line number Diff line change @@ -144,10 +144,10 @@ rubocop:
144
144
# default-oraclelinux-7-tiamat-py3: {extends: '.test_instance'}
145
145
# default-almalinux-8-tiamat-py3: {extends: '.test_instance'}
146
146
# default-rockylinux-8-tiamat-py3: {extends: '.test_instance'}
147
- # default-debian-11-master-py3: {extends: '.test_instance'}
147
+ default-debian-11-master-py3 : {extends: '.test_instance'}
148
148
default-debian-10-master-py3 : {extends: '.test_instance'}
149
149
# clean-debian-10-master-py3: {extends: '.test_instance'}
150
- default-debian-9-master-py3 : {extends: '.test_instance'}
150
+ # default-debian-9-master-py3: {extends: '.test_instance'}
151
151
default-ubuntu-2204-master-py3 : {extends: '.test_instance_failure_permitted'}
152
152
default-ubuntu-2004-master-py3 : {extends: '.test_instance'}
153
153
default-ubuntu-1804-master-py3 : {extends: '.test_instance'}
Original file line number Diff line number Diff line change 53
53
always_run : true
54
54
pass_filenames : false
55
55
- repo : https://github.com/warpnet/salt-lint
56
- rev : v0.8.0
56
+ rev : v0.9.2
57
57
hooks :
58
58
- id : salt-lint
59
59
name : Check Salt files using salt-lint
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ values:
15
15
libvirt_pkg : libvirt
16
16
qemu_pkg : qemu
17
17
python2_pkg : libvirt-python
18
- python3_pkg : libvirt- python3
18
+ python3_pkg : python3-libvirt
19
19
libvirt_service : libvirtd
20
20
libvirtd_config : /etc/libvirt/libvirtd.conf
21
21
daemon_config_path : {}
Original file line number Diff line number Diff line change 11
11
---
12
12
values :
13
13
python2_pkg : ~
14
- python3_pkg : python3-libvirt
15
14
...
Original file line number Diff line number Diff line change 11
11
---
12
12
values :
13
13
python2_pkg : ~
14
- python3_pkg : python3-libvirt
15
14
...
Original file line number Diff line number Diff line change 11
11
---
12
12
values :
13
13
python2_pkg : python2-libvirt
14
- python3_pkg : python3-libvirt
15
14
...
Original file line number Diff line number Diff line change 11
11
---
12
12
values :
13
13
python2_pkg : ~
14
- python3_pkg : python3-libvirt
15
14
...
Original file line number Diff line number Diff line change 12
12
values :
13
13
libvirt_pkg : libvirt-daemon-system
14
14
libvirt_service : libvirtd
15
- qemu_pkg : qemu-kvm
15
+ qemu_pkg : qemu-system-x86
16
16
python2_pkg : python-libvirt
17
- python3_pkg : python3-libvirt
18
17
extra_pkgs :
19
18
- libguestfs0
20
19
- libguestfs-tools
21
20
- gnutls-bin
22
- - virt-top
23
21
daemon_config_path : /etc/default
24
22
...
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
# vim: ft=yaml
3
3
#
4
- # Setup variables specific to salt['config.get']('osfinger') == Ubuntu-16.04 .
4
+ # Setup variables specific to salt['config.get']('osfinger') == Debian-9 .
5
5
# You just need to add the key:values for this `osfinger` that differ
6
6
# from `defaults.yaml`.
7
7
#
10
10
# values: {}
11
11
---
12
12
values :
13
- libvirt_pkg : libvirt-bin
14
- libvirt_service : libvirt-bin
13
+ extra_pkgs :
14
+ - gnutls-bin
15
+ qemu_pkg : qemu-kvm
15
16
...
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
# vim: ft=yaml
3
3
#
4
- # Setup variables specific to salt['config.get']('osfinger') == Ubuntu-22 .04.
4
+ # Setup variables specific to salt['config.get']('osfinger') == Ubuntu-18 .04.
5
5
# You just need to add the key:values for this `osfinger` that differ
6
6
# from `defaults.yaml`.
7
7
#
10
10
# values: {}
11
11
---
12
12
values :
13
- qemu_pkg : qemu-system-x86
13
+ qemu_pkg : qemu-kvm
14
14
...
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-20.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-kvm
14
+ ...
Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ def build_default_packages
78
78
def build_debian_packages
79
79
{
80
80
'libvirt' => [ 'libvirt-daemon-system' ] ,
81
- 'extra' => %w[ libguestfs0 libguestfs-tools gnutls-bin virt-top ] ,
81
+ 'qemu' => [ 'qemu-system-x86' ] ,
82
+ 'extra' => %w[ libguestfs0 libguestfs-tools gnutls-bin ] ,
82
83
'python' => if inspec . salt_minion . python3?
83
84
[ 'python3-libvirt' ]
84
85
else
@@ -134,8 +135,6 @@ def build_centos_packages
134
135
135
136
def build_ubuntu_packages
136
137
case inspec . system . platform [ :release ]
137
- when /^22/
138
- { 'qemu' => [ 'qemu-system-x86' ] }
139
138
when /^16/
140
139
{ 'libvirt' => [ 'libvirt-bin' ] }
141
140
else
You can’t perform that action at this time.
0 commit comments