diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-08 16:32:34 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-08 16:32:34 +0000 |
commit | d6d05d4e3d2aafa95a0af8705b6b2f03367ac451 (patch) | |
tree | ae1b3cf519c83fe587d2598ca2b1b596d9df2739 /lib | |
parent | 1cef8f576cf21f715f497e6ff9e350aea9c2a93d (diff) | |
download | puppet-d6d05d4e3d2aafa95a0af8705b6b2f03367ac451.tar.gz puppet-d6d05d4e3d2aafa95a0af8705b6b2f03367ac451.tar.xz puppet-d6d05d4e3d2aafa95a0af8705b6b2f03367ac451.zip |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/client/master.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |