class Node::Plain

Public Instance Methods

find(request) click to toggle source

Just return an empty node.

Calls superclass method Puppet::Indirector::Plain#find
# File lib/puppet/indirector/node/plain.rb, line 14
def find(request)
  node = super
  node.environment = request.environment
  node.fact_merge
  node
end