Sha256: f59f5db598b980134acb68e14bc6f5c7a37d1fe4ea6717ca00b75596c66fafe3
Contents?: true
Size: 722 Bytes
Versions: 20
Compression:
Stored size: 722 Bytes
Contents
# # type.rb # module Puppet::Parser::Functions 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 end # vim: set ts=2 sw=2 et :
Version data entries
20 entries across 20 versions & 1 rubygems