(#11071) Fix to work with latest firewall module

The firewall module deprecated the use of jump => accept, this patch now
changes this parameter to action => accept making it compatible with the
latest release.
This commit is contained in:
David Alden 2011-11-29 11:08:34 -05:00 committed by Ken Barber
parent 6c378a219e
commit a776a8b46d
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ define apache::vhost(
if ! defined(Firewall["0100-INPUT ACCEPT $port"]) {
@firewall {
"0100-INPUT ACCEPT $port":
jump => 'ACCEPT',
action => 'accept',
dport => "$port",
proto => 'tcp'
}