[base] Install missing iptables package on ppc64le

The Fedora 42 on ppc64le needs iptables-legacy package as well.
This commit is contained in:
Michal Konecny
2025-07-22 11:24:11 +02:00
parent be82a1ee19
commit dcdc636596

View File

@@ -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: