From e90c31c2a62f633e8d2756c7e432d645c47bc462 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de>
Date: Fri, 23 Jul 2021 12:28:32 +0200
Subject: [PATCH] fix: ND-1993 - insert iptables rules at the top instead of
 appending them at the bottom

---
 tasks/configure-iptables.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tasks/configure-iptables.yml b/tasks/configure-iptables.yml
index 19be08f..ec216d9 100644
--- a/tasks/configure-iptables.yml
+++ b/tasks/configure-iptables.yml
@@ -1,7 +1,7 @@
 ---
 - name: iptables-Regeln setzen
   iptables:
-    action: "append"
+    action: "insert"
     chain: "INPUT"
     comment: "{{ item.comment }}"
     destination: "{{ item.dest | default(omit) }}"
-- 
GitLab