From c6c4e13d58576cf038b399fe5be0ef107552d4d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <joerg.sachse@slub-dresden.de> Date: Thu, 10 Nov 2022 17:31:15 +0100 Subject: [PATCH] fix: append iptables rules instead of inserting them at the top --- tasks/configure_iptables_externalusers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/configure_iptables_externalusers.yml b/tasks/configure_iptables_externalusers.yml index f979f95..b107c28 100644 --- a/tasks/configure_iptables_externalusers.yml +++ b/tasks/configure_iptables_externalusers.yml @@ -1,7 +1,7 @@ --- - name: iptables-Regeln setzen (ZIH der TU Dresden) ansible.builtin.iptables: - action: insert + action: append chain: INPUT comment: "{{ item.comment }}" destination: "{{ item.dest | default(omit) }}" -- GitLab