mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-06 13:23:14 +00:00
Merge pull request #96 from aniro/master
Fixed wrong path to CheckedIPAddress class
This commit is contained in:
@@ -294,7 +294,7 @@ def main():
|
||||
if installer.ip_addresses is not None:
|
||||
for value in installer.ip_addresses:
|
||||
try:
|
||||
CheckedIPAddress(value)
|
||||
ipautil.CheckedIPAddress(value)
|
||||
except Exception as e:
|
||||
ansible_module.fail_json(msg="invalid IP address {0}: {1}".format(
|
||||
value, e))
|
||||
|
||||
Reference in New Issue
Block a user