From 2bca41a9c41225ecb794134c006908cb197bb8e2 Mon Sep 17 00:00:00 2001 From: Jeff McCune Date: Tue, 21 Jun 2011 14:10:33 -0700 Subject: (#8010) Add getvar() rvalue function This isn't directly related to #8010, but rather indirectly fills the need to allow the end user to configure where data values are looked up. This allows the namespace to be passed as a class parameter. A module may then quickly and easily look up data from the user-defined namespace. --- lib/puppet/parser/functions/getvar.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/puppet/parser/functions/getvar.rb (limited to 'lib') diff --git a/lib/puppet/parser/functions/getvar.rb b/lib/puppet/parser/functions/getvar.rb new file mode 100644 index 0000000..ffd774d --- /dev/null +++ b/lib/puppet/parser/functions/getvar.rb @@ -0,0 +1,23 @@ +module Puppet::Parser::Functions + + newfunction(:getvar, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args| + Lookup a variable in a remote namespace. + + For example: + + $foo = getvar('site::data::foo') + + This is useful if the namespace itself is stored in a string: + + $bar = getvar("${datalocation}::bar") + ENDHEREDOC + + unless args.length == 1 + raise Puppet::ParseError, ("getvar(): wrong number of arguments (#{args.length}; must be 1)") + end + + self.lookupvar("#{args[0]}") + + end + +end -- cgit v1.2.3