Skip to content

Commit

Permalink
Adapt to updated firewall module
Browse files Browse the repository at this point in the history
The "action" parameter was changed to align with iptables notion of
"jump"; See PR #743.
  • Loading branch information
botimer committed Dec 17, 2024
1 parent 0b54275 commit 4b7f222
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manifests/profile/authz_test.pp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
}

firewall { '200 HTTP(S): public':
proto => 'tcp',
dport => [80, 443],
state => 'NEW',
action => 'accept',
proto => 'tcp',
dport => [80, 443],
state => 'NEW',
jump => 'accept',
}
}

0 comments on commit 4b7f222

Please sign in to comment.