feat: install iptables and ip6tables on Alpine

This commit is contained in:
Simon Cornet 2026-02-16 14:19:52 +01:00
commit 0bd14cf4ad

View file

@ -1,2 +1,10 @@
---
# Configure routing
- name: "install iptables"
community.general.apk:
name:
- "iptables"
- "ip6tables"
state: "present"
update_cache: true
become: true