From 0bd14cf4ad04d9fcee5d361a0ebfa02e4838ccaa Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 16 Feb 2026 14:19:52 +0100 Subject: [PATCH] feat: install iptables and ip6tables on Alpine --- tasks/routing.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tasks/routing.yaml b/tasks/routing.yaml index ff2d32a..8517264 100644 --- a/tasks/routing.yaml +++ b/tasks/routing.yaml @@ -1,2 +1,10 @@ --- -# Configure routing + +- name: "install iptables" + community.general.apk: + name: + - "iptables" + - "ip6tables" + state: "present" + update_cache: true + become: true