Puppet Function: stdlib::has_ip_network
- Defined in:
- functions/has_ip_network.pp
- Function type:
- Puppet Language
Summary
Returns true if the client has the requested IPv4 network on some interface.Overview
6 7 8 9 10 |
# File 'functions/has_ip_network.pp', line 6
function stdlib::has_ip_network(
Stdlib::IP::Address::V4::Nosubnet $ip_network,
) >> Boolean {
stdlib::has_interface_with('network', $ip_network)
}
|