From 9fcf121d535a2123f66705f405d06ef48fbb085f Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 29 Dec 2011 16:11:50 +1100 Subject: [PATCH] (#11443) simple fix of the error message for allowed values of the jump property The condition on jump says its allowed accept, reject and drop. Update the error message to say the same thing --- lib/puppet/type/firewall.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet/type/firewall.rb b/lib/puppet/type/firewall.rb index de38898..40e3be4 100644 --- a/lib/puppet/type/firewall.rb +++ b/lib/puppet/type/firewall.rb @@ -264,7 +264,7 @@ Puppet::Type.newtype(:firewall) do if ["accept","reject","drop"].include?(value.downcase) raise ArgumentError, <<-EOS - Jump destination should not be one of ACCEPT, REJECT or DENY. Use + Jump destination should not be one of ACCEPT, REJECT or DROP. Use the action property instead. EOS end -- 2.45.2