summaryrefslogtreecommitdiff
path: root/lib/puppet/functions/validate_ipv4_address.rb
blob: 6a870eba0c753792a66c12b88fd995b46c239e36 (plain)
1
2
3
4
5
6
7
8
9
10
Puppet::Functions.create_function(:validate_ipv4_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', 'puppet_3_type_check', "This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Ipv4_Address. There is further documentation for validate_legacy function in the README.")
    scope.send("function_validate_ipv4_address", args)
  end
end