From d6d05d4e3d2aafa95a0af8705b6b2f03367ac451 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 8 Jun 2006 16:32:34 +0000 Subject: Fixing #154. Basically just accepted the patch that fixes master.rb and added a test case for it. git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1242 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/client/master.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/puppet/client/master.rb b/lib/puppet/client/master.rb index 3f29eb44e..53d58daa1 100644 --- a/lib/puppet/client/master.rb +++ b/lib/puppet/client/master.rb @@ -34,7 +34,7 @@ class Puppet::Client::MasterClient < Puppet::Client def self.facts facts = {} Facter.each { |name,fact| - facts[name] = fact.downcase + facts[name] = fact.to_s.downcase } # Add our client version to the list of facts, so people can use it -- cgit