From a776a8b46d9b7c1d59c1de5a1bf5467f36dfe025 Mon Sep 17 00:00:00 2001 From: David Alden Date: Tue, 29 Nov 2011 11:08:34 -0500 Subject: [PATCH] (#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. --- manifests/vhost.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/vhost.pp b/manifests/vhost.pp index 76ea856..d479bcd 100644 --- a/manifests/vhost.pp +++ b/manifests/vhost.pp @@ -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' }