Skip to content

Commit c651244

Browse files
author
Domenic Del Nano
committed
Add deprecation function
1 parent f1322c6 commit c651244

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module Puppet::Parser::Functions
2+
newfunction(:deprecation, :doc => <<-EOS
3+
Function to print deprecation warnings (this is the 3.X version of it), The uniqueness key - can appear once. The msg is the message text including any positional information that is formatted by the user/caller of the method.).
4+
EOS
5+
) do |arguments|
6+
7+
raise(Puppet::ParseError, "deprecation: Wrong number of arguments given (#{arguments.size} for 2)") unless arguments.size == 2
8+
9+
key = arguments[0]
10+
message = arguments[1]
11+
12+
if ENV['STDLIB_LOG_DEPRECATIONS'] == "true"
13+
warning("deprecation. #{key}. #{message}")
14+
end
15+
end
16+
end

0 commit comments

Comments
 (0)