Perform safe normalization of nics to use uuid
This commit is contained in:
parent
3fb3e7e6dc
commit
b2d24aba61
1 changed files with 6 additions and 2 deletions
|
@ -215,8 +215,12 @@ def rax_asg(module, cooldown=300, disk_config=None, files={}, flavor=None,
|
|||
nics.extend(cnw.get_server_networks(network))
|
||||
|
||||
for nic in nics:
|
||||
nic.update(uuid=nic['net-id'])
|
||||
del nic['net-id']
|
||||
# pyrax is currently returning net-id, but we need uuid
|
||||
# this check makes this forward compatible for a time when
|
||||
# pyrax uses uuid instead
|
||||
if nic.get('net-id'):
|
||||
nic.update(uuid=nic['net-id'])
|
||||
del nic['net-id']
|
||||
|
||||
# Handle the file contents
|
||||
personality = []
|
||||
|
|
Loading…
Reference in a new issue