diff options
author | Nick Lewis <nick@puppetlabs.com> | 2011-03-03 14:12:44 -0800 |
---|---|---|
committer | Nick Lewis <nick@puppetlabs.com> | 2011-03-03 16:52:46 -0800 |
commit | c3baa2899d88fadd4bbe94e008015e33f98132c7 (patch) | |
tree | c19576706966abf9a0dff04731a74ecc84735c04 /lib/puppet/node.rb | |
parent | 63d8a1f83f4ad109817990354f05879f44419137 (diff) | |
download | puppet-c3baa2899d88fadd4bbe94e008015e33f98132c7.tar.gz puppet-c3baa2899d88fadd4bbe94e008015e33f98132c7.tar.xz puppet-c3baa2899d88fadd4bbe94e008015e33f98132c7.zip |
(#6338) Remove inventory indirection, and move to facts indirection
The inventory indirection was just providing the search method for facts.
Because the route is now facts_search instead of inventory, it can just be
implemented as the search method for facts.
Reviewed-By: Daniel Pittman
Diffstat (limited to 'lib/puppet/node.rb')
-rw-r--r-- | lib/puppet/node.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/node.rb b/lib/puppet/node.rb index e8d58e6be..2453cd1d5 100644 --- a/lib/puppet/node.rb +++ b/lib/puppet/node.rb @@ -3,7 +3,6 @@ require 'puppet/indirector' # A class for managing nodes, including their facts and environment. class Puppet::Node require 'puppet/node/facts' - require 'puppet/node/inventory' require 'puppet/node/environment' # Set up indirection, so that nodes can be looked for in |