File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
playbooks/roles/bifrost-create-vm-nodes Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ The following packages are required and ensured to be present:
10
10
- libvirt-bin
11
11
- qemu-utils
12
12
- qemu-kvm
13
- - sgabios
13
+ - sgabios (except on CentOS Stream 10 / Rocky Linux 10)
14
14
15
15
16
16
Warning
Original file line number Diff line number Diff line change 38
38
39
39
- name : " Install required packages"
40
40
package :
41
- name : " {{ required_packages }}"
41
+ name : " {{ required_packages | select | list }}"
42
42
state : present
43
43
44
44
- name : ensure installation root folder exists
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ required_packages:
6
6
- qemu-img
7
7
- kernel-tools
8
8
- qemu-kvm
9
- - sgabios-bin
9
+ - " {{ ' sgabios-bin' if ansible_distribution_version | int == 9 else '' }} "
10
10
- libvirt
11
11
- libvirt-client
12
12
- libvirt-daemon
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes support for CentOS Stream 10 and Rocky Linux 10 by removing the
5
+ dependency on ``sgabios`` for these distributions.
You can’t perform that action at this time.
0 commit comments