]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
Remove stray print
authorHunter Haugen <hunter@puppetlabs.com>
Fri, 1 Aug 2014 21:52:17 +0000 (14:52 -0700)
committerHunter Haugen <hunter@puppetlabs.com>
Fri, 1 Aug 2014 21:52:17 +0000 (14:52 -0700)
lib/puppet/provider/firewall/iptables.rb

index 43e2484c7b86d58802953c80ba824c988a67ebf4..33d1749bac82b677e841b1e67ae02ebac342c227 100644 (file)
@@ -342,7 +342,6 @@ Puppet::Type.type(:firewall).provide :iptables, :parent => Puppet::Provider::Fir
         m = hash[prop].match(/^(!?)\s?(.*)/)
         neg = "! " if m[1] == "!"
         if [:source,:destination].include?(prop)
-          p hash if hash[prop] == "udp"
           # Normalise all rules to CIDR notation.
           hash[prop] = "#{neg}#{Puppet::Util::IPCidr.new(m[2]).cidr}"
         else