]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/lib/puppet/parser/functions/type.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / type.rb
1 #
2 # type.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:type, :type => :rvalue, :doc => <<-EOS
7   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.
8     EOS
9   ) do |args|
10
11     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.")
12     if ! Puppet::Parser::Functions.autoloader.loaded?(:type3x)
13       Puppet::Parser::Functions.autoloader.load(:type3x)
14     end
15     function_type3x(args + [false])
16   end
17 end
18
19 # vim: set ts=2 sw=2 et :