Skip to content
Snippets Groups Projects
Commit 06d38e3b authored by Baptiste DE RENZO's avatar Baptiste DE RENZO
Browse files

Remove default nfables package, Refs #37090

parent 34394258
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,16 @@
retries: 60
until: apt_status is success or ('Failed to lock apt for exclusive operation' not in apt_status.msg and '/var/lib/dpkg/lock' not in apt_status.msg)
- name: remove default nftables package
ansible.builtin.apt:
state: absent
purge: true
autoremove: true
name: nftables
register: apt_status
retries: 60
until: apt_status is success or ('Failed to lock apt for exclusive operation' not in apt_status.msg and '/var/lib/dpkg/lock' not in apt_status.msg)
- name: use iptables-legacy
ansible.builtin.shell: |
update-alternatives --set iptables /usr/sbin/iptables-legacy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment