mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
[base] Install missing iptables package on ppc64le
The Fedora 42 on ppc64le needs iptables-legacy package as well.
This commit is contained in:
@@ -143,6 +143,17 @@
|
||||
- base
|
||||
when: not nftables
|
||||
|
||||
- name: On F42+ ppc64le Ensure iptables-legacy is installed as well
|
||||
ansible.builtin.package: state=present name=iptables-legacy
|
||||
tags:
|
||||
- packages
|
||||
- base
|
||||
when: >
|
||||
not nftables and
|
||||
ansible_distribution_major_version|int >= 42 and
|
||||
ansible_distribution == 'Fedora' and
|
||||
ansible_architecture == 'ppc64le'
|
||||
|
||||
- name: Ensure nftables is not installed
|
||||
ansible.builtin.package: state=absent name=nftables
|
||||
tags:
|
||||
|
||||
Reference in New Issue
Block a user