From 9c1ab147b3570003bb7907d8a0cadca52869f4bd Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Tue, 17 Jun 2008 09:43:45 +1000 Subject: Fixed #1371 - Updated bin/puppet to use Node.find --- bin/puppet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/puppet b/bin/puppet index 23b175087..5e10ad460 100755 --- a/bin/puppet +++ b/bin/puppet @@ -187,7 +187,7 @@ facts = Puppet::Node::Facts.find("me") facts.name = facts.values["hostname"] # Find our Node -node = Puppet::Node.find_by_any_name(facts.name) +node = Puppet::Node.find(facts.name) # Merge in the facts. node.merge(facts.values) -- cgit