Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / is_ipv6_address.rb
1 #
2 # is_ipv6_address.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:is_ipv6_address, :type => :rvalue, :doc => <<-EOS
7 Returns true if the string passed to this function is a valid IPv6 address.
8     EOS
9   ) do |arguments|
10
11     function_deprecation([:is_ipv6_address, 'This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Ipv6. There is further documentation for validate_legacy function in the README.'])
12
13     require 'ipaddr'
14
15     if (arguments.size != 1) then
16       raise(Puppet::ParseError, "is_ipv6_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 ip.ipv6?
26   end
27 end
28
29 # vim: set ts=2 sw=2 et :