summaryrefslogtreecommitdiff
path: root/lib/facter/puppet_vardir.rb
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2012-03-12 17:41:24 -0700
committerJeff McCune <jeff@puppetlabs.com>2012-03-12 17:41:24 -0700
commitced1f7476e562fea8241469471c715778f3b8157 (patch)
tree7b1692232877f53b7a18b029b31102c13f405fe8 /lib/facter/puppet_vardir.rb
parentc0ac470e764841b0de88dbabade342dc2c1b193e (diff)
parent5d1cec8a66fd67ebf4242c08abdf087783706057 (diff)
downloadpuppet-stdlib-ced1f7476e562fea8241469471c715778f3b8157.tar.gz
puppet-stdlib-ced1f7476e562fea8241469471c715778f3b8157.tar.bz2
Merge branch '2.3.x'
* 2.3.x: (#12357) Fix broken compatibility with Puppet 2.6 (maint) Comment Ken's fix to String#any? (#13018) Fix missing method any? message for ruby 1.9.x (#12357) Add ability to display an error message from validate_re (#12357) Add validate_absolute_path() function (maint) Stop printing the directory of spec_helper (#12357) Make facter_dot_d look in Puppet[:confdir]/facts.d (#12357) Add puppet_vardir custom fact (#12357) Fix root_home fact on Windows
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