Puppet Class: networkmanager::notify_ipv6_disabled
- Defined in:
- manifests/notify_ipv6_disabled.pp
Overview
To be included from networkmanager::ipv6_disable_version when incompatible $ipv6_method is detected to inform the user
3 4 5 6 7 |
# File 'manifests/notify_ipv6_disabled.pp', line 3
class networkmanager::notify_ipv6_disabled {
$text = '"disabled" option for parameter ipv6_method is not available in versions of network manager minor than 1.20, changing to "ignore"'
notify {$text:;}
warning($text)
}
|