From 7fa8b461d24529df40d764750fc3acffc536f079 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Tue, 3 Feb 2026 15:17:30 +0100 Subject: [PATCH] Recommit for updates in build 12 --- ...nfdroid_apache_3A_3Afirewall_3A_3Aiptables.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/puppet_classes/confdroid_apache_3A_3Afirewall_3A_3Aiptables.html b/doc/puppet_classes/confdroid_apache_3A_3Afirewall_3A_3Aiptables.html index ef82ff6..9c1a17d 100644 --- a/doc/puppet_classes/confdroid_apache_3A_3Afirewall_3A_3Aiptables.html +++ b/doc/puppet_classes/confdroid_apache_3A_3Afirewall_3A_3Aiptables.html @@ -127,15 +127,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', } } }