Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / is_ip_address.rb
1 #
2 # is_ip_address.rb
3 #
4 module Puppet::Parser::Functions
5   newfunction(:is_ip_address, :type => :rvalue, :doc => <<-DOC
6     Returns true if the string passed to this function is a valid IP address.
7     DOC
8              ) do |arguments|
9
10     require 'ipaddr'
11
12     function_deprecation([:is_ip_address, 'This method is deprecated, please use the stdlib validate_legacy function,
13                            with Stdlib::Compat::Ip_address. There is further documentation for validate_legacy function in the README.'])
14
15     if arguments.size != 1
16       raise(Puppet::ParseError, "is_ip_address(): Wrong number of arguments given #{arguments.size} for 1")
17     end
18
19     begin
20       ip = IPAddr.new(arguments[0])
21     rescue ArgumentError
22       return false
23     end
24
25     return true if ip.ipv4? || ip.ipv6?
26     return false
27   end
28 end
29
30 # vim: set ts=2 sw=2 et :