|
@@ -160,7 +160,6 @@
|
|
- python36
|
|
- python36
|
|
- rdma-core-devel
|
|
- rdma-core-devel
|
|
- spice-glib-devel
|
|
- spice-glib-devel
|
|
- - spice-server
|
|
|
|
- systemtap-sdt-devel
|
|
- systemtap-sdt-devel
|
|
- tar
|
|
- tar
|
|
- zlib-devel
|
|
- zlib-devel
|
|
@@ -168,3 +167,14 @@
|
|
when:
|
|
when:
|
|
- ansible_facts['distribution_file_variety'] == 'RedHat'
|
|
- ansible_facts['distribution_file_variety'] == 'RedHat'
|
|
- ansible_facts['distribution_version'] == '8'
|
|
- ansible_facts['distribution_version'] == '8'
|
|
|
|
+
|
|
|
|
+ - name: Install packages only available on x86 and aarch64
|
|
|
|
+ dnf:
|
|
|
|
+ # Spice server not available in ppc64le
|
|
|
|
+ name:
|
|
|
|
+ - spice-server
|
|
|
|
+ state: present
|
|
|
|
+ when:
|
|
|
|
+ - ansible_facts['distribution_file_variety'] == 'RedHat'
|
|
|
|
+ - ansible_facts['distribution_version'] == '8'
|
|
|
|
+ - ansible_facts['architecture'] == 'aarch64' or ansible_facts['architecture'] == 'x86_64'
|