summaryrefslogtreecommitdiff
path: root/lib/facter/util/puppet_settings.rb
diff options
context:
space:
mode:
authorJosh Cooper <josh+github@puppetlabs.com>2012-03-06 17:14:35 -0800
committerJosh Cooper <josh+github@puppetlabs.com>2012-03-06 17:14:35 -0800
commit63834354c2c2ed56a01c8ff3d898c62d53551de1 (patch)
tree2b835293d04bde1be382a0a92f8b6fda763804dd /lib/facter/util/puppet_settings.rb
parent32bad79d88e4464cb91101e4671874c11f3e5bf2 (diff)
parent369f7304310f8cff7d3c0cb81932aa8be1488ac2 (diff)
downloadpuppet-stdlib-63834354c2c2ed56a01c8ff3d898c62d53551de1.tar.gz
puppet-stdlib-63834354c2c2ed56a01c8ff3d898c62d53551de1.tar.bz2
Merge pull request #44 from jeffmccune/ticket/2.3.x/12357_add_puppet_settings_facts
(#12357) Make facter_dot_d look in Puppet[:confdir]/facts.d
Diffstat (limited to 'lib/facter/util/puppet_settings.rb')
-rw-r--r--lib/facter/util/puppet_settings.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/facter/util/puppet_settings.rb b/lib/facter/util/puppet_settings.rb
new file mode 100644
index 0000000..c8c8363
--- /dev/null
+++ b/lib/facter/util/puppet_settings.rb
@@ -0,0 +1,17 @@
+module Facter
+ module Util
+ module PuppetSettings
+ class << self
+ def with_puppet
+ begin
+ Module.const_get("Puppet")
+ rescue NameError
+ nil
+ else
+ yield
+ end
+ end
+ end
+ end
+ end
+end