Mercurial > repos > other > Puppet
view modules/firewall/lib/puppet/provider/firewall.rb @ 153:cf3ee1fb3f10 puppet-3.6
Remove unused Apache config files
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 28 Mar 2017 20:51:06 +0100 |
parents | d6f2a0ee45c0 |
children | d9352a684e62 |
line wrap: on
line source
class Puppet::Provider::Firewall < Puppet::Provider # Prefetch our rule list. This is ran once every time before any other # action (besides initialization of each object). def self.prefetch(resources) debug("[prefetch(resources)]") instances.each do |prov| if resource = resources[prov.name] || resources[prov.name.downcase] resource.provider = prov end end end # Look up the current status. This allows us to conventiently look up # existing status with properties[:foo]. def properties if @property_hash.empty? @property_hash = query || {:ensure => :absent} @property_hash[:ensure] = :absent if @property_hash.empty? end @property_hash.dup end # Pull the current state of the list from the full list. We're # getting some double entendre here.... def query self.class.instances.each do |instance| if instance.name == self.name or instance.name.downcase == self.name return instance.properties end end nil end end