summaryrefslogtreecommitdiff
path: root/lib/puppet/functions/is_ip_address.rb
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppet.com>2016-10-12 10:04:54 +0100
committerDavid Schmitt <david.schmitt@puppet.com>2016-10-12 10:40:54 +0100
commitb92fad2b7667df836f8ca4eb92d8c8be84bd0538 (patch)
tree912de02b06abd718f737b1a891d2a38ecc57f04c /lib/puppet/functions/is_ip_address.rb
parentf3978b87a498959b271c487944b1ce3903c359d4 (diff)
(MODULES-3961) emit more deprecation warnings
This now emits one deprecation warning for each function used (but not for each call-site). Prior to this, only a single deprecation warning would have been triggered, potentially misleading users. Additionally this adds v4 deprecation stubs for the functions that were missed.
Diffstat (limited to 'lib/puppet/functions/is_ip_address.rb')
-rw-r--r--lib/puppet/functions/is_ip_address.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/puppet/functions/is_ip_address.rb b/lib/puppet/functions/is_ip_address.rb
new file mode 100644
index 0000000..e584714
--- /dev/null
+++ b/lib/puppet/functions/is_ip_address.rb
@@ -0,0 +1,10 @@
+Puppet::Functions.create_function(:is_ip_address, Puppet::Functions::InternalFunction) do
+ dispatch :deprecation_gen do
+ scope_param
+ optional_repeated_param 'Any', :args
+ end
+ def deprecation_gen(scope, *args)
+ call_function('deprecation', 'is_ip_address', "This method is deprecated, please use match expressions with Stdlib::Compat::Ip_address instead. They are described at https://docs.puppet.com/puppet/latest/reference/lang_data_type.html#match-expressions.")
+ scope.send("function_is_ip_address", args)
+ end
+end