Skip to content

Commit

Permalink
fix(firewall): use jump instead of action
Browse files Browse the repository at this point in the history
  • Loading branch information
minorOffense committed Oct 5, 2023
1 parent 4ac7e3d commit 2de2373
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifests/agent.pp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
firewall { "${firewall_priority} zabbix-agent from ${_server}":
dport => $listenport,
proto => 'tcp',
action => 'accept',
jump => 'accept',
source => $_server,
chain => $chain,
state => [
Expand Down
2 changes: 1 addition & 1 deletion manifests/javagateway.pp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
firewall { '152 zabbix-javagateway':
dport => $listenport,
proto => 'tcp',
action => 'accept',
jump => 'accept',
state => ['NEW','RELATED', 'ESTABLISHED'],
}
}
Expand Down
2 changes: 1 addition & 1 deletion manifests/proxy.pp
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
firewall { '151 zabbix-proxy':
dport => $listenport,
proto => 'tcp',
action => 'accept',
jump => 'accept',
state => [
'NEW',
'RELATED',
Expand Down
2 changes: 1 addition & 1 deletion manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@
firewall { '151 zabbix-server':
dport => $listenport,
proto => 'tcp',
action => 'accept',
jump => 'accept',
state => [
'NEW',
'RELATED',
Expand Down

0 comments on commit 2de2373

Please sign in to comment.