From: Daniel Black Date: Thu, 29 Dec 2011 05:11:50 +0000 (+1100) Subject: (#11443) simple fix of the error message for allowed values of the jump property X-Git-Tag: 0.1.0~46^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=9fcf121d535a2123f66705f405d06ef48fbb085f;p=puppet-modules%2Fpuppetlabs-firewall.git (#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 --- 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