1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

check if existing network is VDS and has port attribute (#31322)

This commit is contained in:
strattner 2017-11-19 08:47:57 -05:00 committed by Abhijeet Kasurde
parent ce04f6e961
commit 0334b3fd99

View file

@ -768,9 +768,10 @@ class PyVmomiHelper(PyVmomi):
# VDS switch
pg_obj = find_obj(self.content, [vim.dvs.DistributedVirtualPortgroup], network_devices[key]['name'])
if (nic.device.backing and
(nic.device.backing.port.portgroupKey != pg_obj.key or
nic.device.backing.port.switchUuid != pg_obj.config.distributedVirtualSwitch.uuid)):
if (nic.device.backing and not hasattr(nic.device.backing, 'port')):
nic_change_detected = True
elif (nic.device.backing and (nic.device.backing.port.portgroupKey != pg_obj.key or
nic.device.backing.port.switchUuid != pg_obj.config.distributedVirtualSwitch.uuid)):
nic_change_detected = True
dvs_port_connection = vim.dvs.PortConnection()