module Facts::NodeExpirer
We want to expire any cached nodes if the facts are saved.
Public Instance Methods
save(instance, key = nil, options={})
click to toggle source
Calls superclass method
# File lib/puppet/node/facts.rb 19 def save(instance, key = nil, options={}) 20 Puppet::Node.indirection.expire(instance.name, options) 21 super 22 end