summaryrefslogtreecommitdiff
path: root/lib/facter/puppet_vardir.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/puppet_vardir.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/puppet_vardir.rb')
-rw-r--r--lib/facter/puppet_vardir.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/facter/puppet_vardir.rb b/lib/facter/puppet_vardir.rb
new file mode 100644
index 0000000..755e33c
--- /dev/null
+++ b/lib/facter/puppet_vardir.rb
@@ -0,0 +1,16 @@
+# This facter fact returns the value of the Puppet vardir setting for the node
+# running puppet or puppet agent. The intent is to enable Puppet modules to
+# automatically have insight into a place where they can place variable data,
+# regardless of the node's platform.
+#
+# The value should be directly usable in a File resource path attribute.
+require 'facter/util/puppet_settings'
+
+Facter.add(:puppet_vardir) do
+ setcode do
+ # This will be nil if Puppet is not available.
+ Facter::Util::PuppetSettings.with_puppet do
+ Puppet[:vardir]
+ end
+ end
+end