mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 16:06:43 +00:00
Fix mess of ipv6 and ipv4 addresses in private_ip
This commit is contained in:
committed by
Matt Clay
parent
68a07a2bb5
commit
ac5b0ca59b
@@ -518,7 +518,7 @@ def _get_server_state(module, nova):
|
||||
(ip_changed, server) = _check_floating_ips(module, nova, server)
|
||||
private = openstack_find_nova_addresses(getattr(server, 'addresses'), 'fixed', 'private')
|
||||
public = openstack_find_nova_addresses(getattr(server, 'addresses'), 'floating', 'public')
|
||||
module.exit_json(changed = ip_changed, id = server.id, public_ip = ''.join(public), private_ip = ''.join(private), info = server._info)
|
||||
module.exit_json(changed = ip_changed, id = server.id, public_ip = public, private_ip = private, info = server._info)
|
||||
if server and module.params['state'] == 'absent':
|
||||
return True
|
||||
if module.params['state'] == 'absent':
|
||||
|
||||
Reference in New Issue
Block a user