65f2789004e842d9b58313cdd5d26c648d7e9e7b
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / has_ip_network.rb
1 #
2 # has_ip_network
3 #
4 module Puppet::Parser::Functions
5   newfunction(:has_ip_network, :type => :rvalue, :doc => <<-DOC
6     Returns true if the client has an IP address within the requested network.
7
8     This function iterates through the 'interfaces' fact and checks the
9     'network_IFACE' facts, performing a simple string comparision.
10     DOC
11              ) do |args|
12
13     raise(Puppet::ParseError, "has_ip_network(): Wrong number of arguments given (#{args.size} for 1)") if args.size != 1
14
15     Puppet::Parser::Functions.autoloader.load(:has_interface_with) \
16       unless Puppet::Parser::Functions.autoloader.loaded?(:has_interface_with)
17
18     function_has_interface_with(['network', args[0]])
19   end
20 end
21
22 # vim:sts=2 sw=2