diff options
author | Luke Kanies <luke@madstop.com> | 2008-06-10 00:33:39 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-06-15 13:31:47 -0500 |
commit | 317af3608caae060d15b407fe0b78304f355c106 (patch) | |
tree | fdd8f300ac4eb5d2264b5a9ff91713e30d6ccad6 | |
parent | b7bd427eb98001fb051f0d8910a0a87d1b810c15 (diff) | |
download | puppet-317af3608caae060d15b407fe0b78304f355c106.tar.gz puppet-317af3608caae060d15b407fe0b78304f355c106.tar.xz puppet-317af3608caae060d15b407fe0b78304f355c106.zip |
Removing the now-obsolete Node.node_facts method.
-rw-r--r-- | lib/puppet/node.rb | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/puppet/node.rb b/lib/puppet/node.rb index a2024e6b5..75b7197fd 100644 --- a/lib/puppet/node.rb +++ b/lib/puppet/node.rb @@ -20,19 +20,6 @@ class Puppet::Node find(key) end - private - - # Look up the node facts so we can generate the node names to use. - def self.node_facts(key) - if facts = Puppet::Node::Facts.find(key) - facts.values - else - {} - end - end - - public - attr_accessor :name, :classes, :parameters, :source, :ipaddress attr_reader :time |