diff options
author | Luke Kanies <luke@madstop.com> | 2005-08-29 21:03:46 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-08-29 21:03:46 +0000 |
commit | 914764b9d5045fb9a1824577546ca0559d2a1e88 (patch) | |
tree | 239011e6286208a5b074a73bb04c52fc3db67f5b /lib | |
parent | eab73144798bb66118501ba1d26cbac5a4e86bae (diff) | |
download | puppet-914764b9d5045fb9a1824577546ca0559d2a1e88.tar.gz puppet-914764b9d5045fb9a1824577546ca0559d2a1e88.tar.xz puppet-914764b9d5045fb9a1824577546ca0559d2a1e88.zip |
As Christian requested, I am no longer downcasing facts I receive from Facter. Also, removing some outdated files
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@599 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb index cd95a8510..7ea7db3e8 100644 --- a/lib/puppet/client.rb +++ b/lib/puppet/client.rb @@ -205,7 +205,7 @@ module Puppet def self.facts facts = {} Facter.each { |name,fact| - facts[name] = fact.downcase + facts[name] = fact } facts |