]> git.openstreetmap.org Git - chef.git/commitdiff
Allow connection_limit to be an integer
authorTom Hughes <tom@compton.nu>
Thu, 30 Jul 2020 20:21:56 +0000 (21:21 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 30 Jul 2020 20:21:56 +0000 (21:21 +0100)
cookbooks/networking/resources/firewall_rule.rb

index 348272af7ccef03fda8ad50f9b2d9883e75627fd..7cac9f86e4c94ffccdc7a05b42fae8103acfb93e 100644 (file)
@@ -30,7 +30,7 @@ property :proto, :kind_of => String, :required => true
 property :dest_ports, :kind_of => [String, Integer], :default => "-"
 property :source_ports, :kind_of => [String, Integer], :default => "-"
 property :rate_limit, :kind_of => String, :default => "-"
-property :connection_limit, :kind_of => String, :default => "-"
+property :connection_limit, :kind_of => [String, Integer], :default => "-"
 property :helper, :kind_of => String, :default => "-"
 
 action :accept do
@@ -55,7 +55,7 @@ action_class do
       :dest_ports => new_resource.dest_ports.to_s,
       :source_ports => new_resource.source_ports.to_s,
       :rate_limit => new_resource.rate_limit,
-      :connection_limit => new_resource.connection_limit,
+      :connection_limit => new_resource.connection_limit.to_s,
       :helper => new_resource.helper
     }