diff options
author | David Schmitt <david.schmitt@puppet.com> | 2016-09-21 12:13:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-21 12:13:34 +0100 |
commit | e94beb5bd189296ac3dade603c1b45ac7183ec21 (patch) | |
tree | 48aae9abafbbe893ad8919ed87826151709d6910 /lib/puppet_x/puppetlabs/stdlib | |
parent | 66830ac66ac4d435c56c5f3fc93592c32c087726 (diff) | |
parent | 0ec7ffa5c086c8a1c6e871b086299dd1953fa8ba (diff) |
Merge pull request #654 from HelenCampbell/puppet4Dep
Ensure validate functions use Puppet 4 deprecation
Diffstat (limited to 'lib/puppet_x/puppetlabs/stdlib')
-rw-r--r-- | lib/puppet_x/puppetlabs/stdlib/deprecation_gen.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/puppet_x/puppetlabs/stdlib/deprecation_gen.rb b/lib/puppet_x/puppetlabs/stdlib/deprecation_gen.rb new file mode 100644 index 0000000..a3d830b --- /dev/null +++ b/lib/puppet_x/puppetlabs/stdlib/deprecation_gen.rb @@ -0,0 +1,21 @@ +# Creates a Puppet 4 function for the corresponding puppet 3 validate function, who's name will be passed as an argument, alongside the type for deprecation output purposes. +module PuppetX + module Puppetlabs + module Stdlib + def self.deprecation_gen(funct, type) + Puppet::Functions.create_function(funct, Puppet::Functions::InternalFunction) do + @@funct = funct + @@type = type + 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 #{@@type}. There is further documentation for validate_legacy function in the README.") + scope.send("function_#{@@funct}", args) + end + end + end + end + end +end |