From d1634ade9c00b39794efc10a8497e611a2c60711 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Fri, 25 Nov 2022 11:26:46 +0100 Subject: [PATCH] fix var name --- linux/nftables/templates/nftables.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/nftables/templates/nftables.conf b/linux/nftables/templates/nftables.conf index 57b01c9..9636a68 100644 --- a/linux/nftables/templates/nftables.conf +++ b/linux/nftables/templates/nftables.conf @@ -33,7 +33,7 @@ table inet firewall { {% if nftables_external_interfaces is defined %} {% for interface in ansible_interfaces %} - {% if interface not in nftables_blacklisted_interfaces %} + {% if interface not in nftables_external_interfaces %} iifname {{ interface }} accept {% endif %} {% endfor %}