diff options
Diffstat (limited to 'lib/puppet/indirector/node/plain.rb')
-rw-r--r-- | lib/puppet/indirector/node/plain.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/puppet/indirector/node/plain.rb b/lib/puppet/indirector/node/plain.rb new file mode 100644 index 000000000..d60cc3aa5 --- /dev/null +++ b/lib/puppet/indirector/node/plain.rb @@ -0,0 +1,19 @@ +require 'puppet/node' +require 'puppet/indirector/plain' + +class Puppet::Node::Plain < Puppet::Indirector::Plain + desc "Always return an empty node object. Assumes you keep track of nodes + in flat file manifests. You should use it when you don't have some other, + functional source you want to use, as the compiler will not work without a + valid node terminus. + + Note that class is responsible for merging the node's facts into the + node instance before it is returned." + + # Just return an empty node. + def find(name) + node = super + node.fact_merge + node + end +end |