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 | |
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')
-rw-r--r-- | lib/puppet/node/inventory.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/puppet/node/inventory.rb b/lib/puppet/node/inventory.rb deleted file mode 100644 index fd99163b0..000000000 --- a/lib/puppet/node/inventory.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'puppet/node' -require 'puppet/indirector' - -class Puppet::Node::Inventory - extend Puppet::Indirector - indirects :inventory, :terminus_setting => :inventory_terminus -end |