From 5936815f75212e4ff9eb546ff2755a27c7117bdd Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 15 Aug 2023 12:18:21 -0700 Subject: [PATCH] iptables / staging: more adjusting Signed-off-by: Kevin Fenzi --- roles/base/templates/iptables/iptables.staging | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/base/templates/iptables/iptables.staging b/roles/base/templates/iptables/iptables.staging index 88a924d68b..e9f1a28409 100644 --- a/roles/base/templates/iptables/iptables.staging +++ b/roles/base/templates/iptables/iptables.staging @@ -15,7 +15,7 @@ -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT # if the host is external, block some ips -{% if external == 'true' %} +{% if external %} -A INPUT -p all -m set --match-set blocklist src -j REJECT {% endif %}