diff options
author | David Schmitt <david.schmitt@puppet.com> | 2016-10-07 13:00:16 +0100 |
---|---|---|
committer | David Schmitt <david.schmitt@puppet.com> | 2016-10-07 13:03:50 +0100 |
commit | ddae9880025b6dfdc3b5a8c177548c8eb5e50a91 (patch) | |
tree | 307e89f4aafe8563b854eb1e9266337246a39406 | |
parent | a4ebae621dd4dc09d760a51b8b221a3250142789 (diff) |
(Maint) add missing validate_slength deprecation
-rw-r--r-- | lib/puppet/functions/validate_slength.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/puppet/functions/validate_slength.rb b/lib/puppet/functions/validate_slength.rb new file mode 100644 index 0000000..2d71a14 --- /dev/null +++ b/lib/puppet/functions/validate_slength.rb @@ -0,0 +1,10 @@ +Puppet::Functions.create_function(:validate_slength, Puppet::Functions::InternalFunction) do + dispatch :deprecation_gen do + scope_param + optional_repeated_param 'Any', :args + end + def deprecation_gen(scope, *args) + call_function('deprecation', 'puppet_3_type_check', "This method is deprecated, please use the stdlib validate_legacy function, with String[]. There is further documentation for validate_legacy function in the README.") + scope.send("function_validate_slength", args) + end +end |