-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathtype.rb
More file actions
30 lines (26 loc) · 965 Bytes
/
type.rb
File metadata and controls
30 lines (26 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true
#
# type.rb
#
module Puppet::Parser::Functions
newfunction(:type, type: :rvalue, doc: <<-DOC
@summary
**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.
@return the type when passed a value. Type can be one of:
* string
* array
* hash
* float
* integer
* boolean
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 Layout/LineLength : Cannot reduce line length
unless Puppet::Parser::Functions.autoloader.loaded?(:type3x)
Puppet::Parser::Functions.autoloader.load(:type3x)
end
function_type3x(args)
end
end
# vim: set ts=2 sw=2 et :