"...parser/functions/lib/puppet/parser/functions/dig.rb" did not exist on "1614426f349c95d7f782bff5fb863377e68ab7a6"
dig.rb 594 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# dig.rb
#
module Puppet::Parser::Functions
  newfunction(:dig, :type => :rvalue, :doc => <<-DOC
    DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.
    DOC
             ) do |arguments|
    warning('dig() DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.')
    unless Puppet::Parser::Functions.autoloader.loaded?(:dig44)
      Puppet::Parser::Functions.autoloader.load(:dig44)
    end
    function_dig44(arguments)
  end
end