Skip to content

Commit

Permalink
fix: correct package names for debian 9 and 11
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainfaivre committed Dec 13, 2023
1 parent a0ae21c commit 1e3770b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ rubocop:
# default-oraclelinux-7-tiamat-py3: {extends: '.test_instance'}
# default-almalinux-8-tiamat-py3: {extends: '.test_instance'}
# default-rockylinux-8-tiamat-py3: {extends: '.test_instance'}
# default-debian-11-master-py3: {extends: '.test_instance'}
default-debian-11-master-py3: {extends: '.test_instance'}
default-debian-10-master-py3: {extends: '.test_instance'}
# clean-debian-10-master-py3: {extends: '.test_instance'}
default-debian-9-master-py3: {extends: '.test_instance'}
Expand Down
3 changes: 1 addition & 2 deletions libvirt/parameters/os_family/Debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
values:
libvirt_pkg: libvirt-daemon-system
libvirt_service: libvirtd
qemu_pkg: qemu-kvm
qemu_pkg: qemu-system-x86
python2_pkg: python-libvirt
python3_pkg: python3-libvirt
extra_pkgs:
- libguestfs0
- libguestfs-tools
- gnutls-bin
- virt-top
daemon_config_path: /etc/default
...
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
#
# Setup variables specific to salt['config.get']('osfinger') == Ubuntu-16.04.
# Setup variables specific to salt['config.get']('osfinger') == Debian-9.
# You just need to add the key:values for this `osfinger` that differ
# from `defaults.yaml`.
#
Expand All @@ -10,6 +10,7 @@
# values: {}
---
values:
libvirt_pkg: libvirt-bin
libvirt_service: libvirt-bin
extra_pkgs:
- gnutls-bin
qemu_pkg: qemu-kvm
...
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
#
# Setup variables specific to salt['config.get']('osfinger') == Ubuntu-22.04.
# Setup variables specific to salt['config.get']('osfinger') == Ubuntu-18.04.
# You just need to add the key:values for this `osfinger` that differ
# from `defaults.yaml`.
#
Expand All @@ -10,5 +10,5 @@
# values: {}
---
values:
qemu_pkg: qemu-system-x86
qemu_pkg: qemu-kvm
...
14 changes: 14 additions & 0 deletions libvirt/parameters/osfinger/Ubuntu-20.04.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
#
# Setup variables specific to salt['config.get']('osfinger') == Ubuntu-20.04.
# You just need to add the key:values for this `osfinger` that differ
# from `defaults.yaml`.
#
# If you do not need to provide defaults via the `osfinger` config,
# you can remove this file or provide at least an empty dict, e.g.
# values: {}
---
values:
qemu_pkg: qemu-kvm
...

0 comments on commit 1e3770b

Please sign in to comment.