summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-07-18 19:58:09 +0000
committerLuke Kanies <luke@madstop.com>2005-07-18 19:58:09 +0000
commit6f4f8212955853ef60332d02a62a6a2596dc71f5 (patch)
tree64962243d62a456bda0218579cd707bf0a7c4ecb
parentb1f3fb8a9beb7a5c8407107b96d5c615f4504b7a (diff)
downloadpuppet-6f4f8212955853ef60332d02a62a6a2596dc71f5.tar.gz
puppet-6f4f8212955853ef60332d02a62a6a2596dc71f5.tar.xz
puppet-6f4f8212955853ef60332d02a62a6a2596dc71f5.zip
downcasing the values of all facts
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@416 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--lib/puppet/client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb
index a2fb6c76b..14fd590c8 100644
--- a/lib/puppet/client.rb
+++ b/lib/puppet/client.rb
@@ -26,7 +26,7 @@ module Puppet
def Client.facts
facts = {}
Facter.each { |name,fact|
- facts[name] = fact
+ facts[name] = fact.downcase
}
facts