diff options
author | Luke Kanies <luke@madstop.com> | 2008-03-20 23:27:18 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-03-20 23:27:18 -0500 |
commit | 4f400d4d4da2185832daf5970b5f78b74320d011 (patch) | |
tree | 3e72bfec712068bc8ee8d30e6eb5126ffa88759d /lib/puppet/indirector/node | |
parent | 54bedb2bbae2b84fc8f9df8b95e0a904a4e709f7 (diff) | |
download | puppet-4f400d4d4da2185832daf5970b5f78b74320d011.tar.gz puppet-4f400d4d4da2185832daf5970b5f78b74320d011.tar.xz puppet-4f400d4d4da2185832daf5970b5f78b74320d011.zip |
Fixed #1147: Cached nodes are correctly considered out of
date if the node facts have been updated (thus causing
node facts to again be available in manifests, for those
cases where they were not).
Diffstat (limited to 'lib/puppet/indirector/node')
-rw-r--r-- | lib/puppet/indirector/node/plain.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/puppet/indirector/node/plain.rb b/lib/puppet/indirector/node/plain.rb index d60cc3aa5..8058563e6 100644 --- a/lib/puppet/indirector/node/plain.rb +++ b/lib/puppet/indirector/node/plain.rb @@ -16,4 +16,11 @@ class Puppet::Node::Plain < Puppet::Indirector::Plain node.fact_merge node end + + # Use the version of the facts, since we assume that's the main thing + # that changes. If someone wants their own way of defining version, + # they can easily provide their own, um, version of this class. + def version(name) + Puppet::Node::Facts.version(name) + end end |