Puppet Function: type

Defined in:
puppet/modules/stdlib/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)


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

newfunction(:type, :type => :rvalue, :doc => <<-EOS
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.
  EOS
) 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.")
  if ! Puppet::Parser::Functions.autoloader.loaded?(:type3x)
    Puppet::Parser::Functions.autoloader.load(:type3x)
  end
  function_type3x(args + [false])
end