mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
mend
This commit is contained in:
parent
e51f6c18eb
commit
24e8428a7b
1 changed files with 2 additions and 2 deletions
|
@ -805,7 +805,7 @@ class PyVmomiHelper(object):
|
|||
for ip_string in self.params['ips']:
|
||||
ip = IPAddress(self.params['ips'])
|
||||
for network in self.params['networks']:
|
||||
if network:
|
||||
if network:
|
||||
if ip in IPNetwork(network):
|
||||
self.params['networks'][network]['ip'] = str(ip)
|
||||
ipnet = IPNetwork(network)
|
||||
|
@ -922,7 +922,7 @@ class PyVmomiHelper(object):
|
|||
annotation_spec = vim.vm.ConfigSpec()
|
||||
annotation_spec.annotation = str(self.params['annotation'])
|
||||
task = vm.ReconfigVM_Task(annotation_spec)
|
||||
self.wait_for_task(task)
|
||||
self.wait_for_task(task)
|
||||
if wait_for_ip:
|
||||
self.set_powerstate(vm, 'poweredon', force=False)
|
||||
self.wait_for_vm_ip(vm)
|
||||
|
|
Loading…
Reference in a new issue