Puppet Function: type

Defined in:
lib/puppet/parser/functions/type.rb
Function type:
Ruby 3.x API

Overview

type()Any

DEPRECATED: This function will cease to function on Puppet 4; please use type3x() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser’s typing system.

Returns:

  • (Any)


5
6
7
8
9
10
11
12
13
14
15
# File 'lib/puppet/parser/functions/type.rb', line 5

newfunction(:type, :type => :rvalue, :doc => <<-DOC
  DEPRECATED: This function will cease to function on Puppet 4; please use type3x() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.
DOC
           ) do |args|

  warning("type() DEPRECATED: This function will cease to function on Puppet 4; please use type3x() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.") # rubocop:disable Metrics/LineLength : Cannot reduce line length
  unless Puppet::Parser::Functions.autoloader.loaded?(:type3x)
    Puppet::Parser::Functions.autoloader.load(:type3x)
  end
  function_type3x(args)
end