diff options
author | Rein Henrichs <rein@puppetlabs.com> | 2010-06-07 15:45:45 -0700 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 9d0a38ee1baa295fb8d2b69f13cbfc91b5de5800 (patch) | |
tree | ffd8f1cb1dda2d0d60866ad93983ed600b4ab801 /lib/puppet/node | |
parent | 2874729efa22c56dde61654e7429bdbb4e41f9ef (diff) | |
download | puppet-9d0a38ee1baa295fb8d2b69f13cbfc91b5de5800.tar.gz puppet-9d0a38ee1baa295fb8d2b69f13cbfc91b5de5800.tar.xz puppet-9d0a38ee1baa295fb8d2b69f13cbfc91b5de5800.zip |
[#3921] Add facts_terminus setting to Puppet settings
* defaults to "facter"
Diffstat (limited to 'lib/puppet/node')
-rwxr-xr-x | lib/puppet/node/facts.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet/node/facts.rb b/lib/puppet/node/facts.rb index 490174bbf..7c1a188ec 100755 --- a/lib/puppet/node/facts.rb +++ b/lib/puppet/node/facts.rb @@ -16,8 +16,7 @@ class Puppet::Node::Facts end end - # Use the node source as the indirection terminus. - indirects :facts, :terminus_class => :facter, :extend => NodeExpirer + indirects :facts, :terminus_setting => :fact_terminus, :extend => NodeExpirer attr_accessor :name, :values |