Sha256: a930f848c1e6d9cbf870becd4ed852c4babb48a997f55734995e23565493b6d6

Contents?: true

Size: 631 Bytes

Versions: 4

Compression:

Stored size: 631 Bytes

Contents

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-0.24.0 lib/puppet/indirector/node/plain.rb
puppet-0.24.1 lib/puppet/indirector/node/plain.rb
puppet-0.24.2 lib/puppet/indirector/node/plain.rb
puppet-0.24.3 lib/puppet/indirector/node/plain.rb