summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/getvar.rb
blob: ffd774dbf0290bd4d32f29ed9db6425e0c173861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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