diff options
author | Luke Kanies <luke@madstop.com> | 2008-03-24 16:37:48 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-03-24 16:37:48 -0500 |
commit | 017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9 (patch) | |
tree | af020b8ea4eda42258502328482511989da5bfb5 /lib | |
parent | 30f0fc0b1ce1900b6d94ec61ddb17fa1fdfdae5a (diff) | |
download | puppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.tar.gz puppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.tar.xz puppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.zip |
Moved the configuration of the Node cache to the puppetmasterd
executable, since it otherwise causes caches to be used in all
cases, which we don't want (e.g., bin/puppet was using them).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/node.rb b/lib/puppet/node.rb index c39f364bc..c0628ecdc 100644 --- a/lib/puppet/node.rb +++ b/lib/puppet/node.rb @@ -10,7 +10,7 @@ class Puppet::Node extend Puppet::Indirector # Use the node source as the indirection terminus. - indirects :node, :terminus_setting => :node_terminus, :cache_class => :yaml, :doc => "Where to find node information. + indirects :node, :terminus_setting => :node_terminus, :doc => "Where to find node information. A node is composed of its name, its facts, and its environment." # Retrieve a node from the node source, with some additional munging |