From 93f8a8764451794654d6bebe55b25259a9b0c044 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Tue, 3 Feb 2026 15:16:27 +0100 Subject: [PATCH] OP#410 fix fw --- manifests/firewall/iptables.pp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/manifests/firewall/iptables.pp b/manifests/firewall/iptables.pp index 63c91ae..756f142 100644 --- a/manifests/firewall/iptables.pp +++ b/manifests/firewall/iptables.pp @@ -8,15 +8,15 @@ class confdroid_apache::firewall::iptables ( ) inherits confdroid_apache::params { if $ae_manage_fw == true { firewall { "${ae_order_no}${ae_http_port} tcp http port ${ae_http_port}": - proto => ['tcp','udp'], - dport => $ae_http_port, - action => 'accept', - } + proto => ['tcp','udp'], + dport => $ae_http_port, + jump => 'accept', + } firewall { "${ae_order_no}${ae_https_port} tcp http port ${ae_https_port}": - proto => ['tcp','udp'], - dport => $ae_https_port, - action => 'accept', + proto => ['tcp','udp'], + dport => $ae_https_port, + jump => 'accept', } } }