Upgrade dependency;Fix syntax
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-12-23 12:51:10 +01:00
parent e538fce0f8
commit 5c68b87d67
2 changed files with 8 additions and 8 deletions

View File

@ -40,13 +40,13 @@
- name: Add vApp properties on deployed VM's
ansible.builtin.shell:
cmd: >-
vappproperty-manager \
-server {{ vapp['hv.fqdn'] }} \
-username {{ vapp['hv.username'] }} \
-password {{ vapp['hv.password'] }} \
-dc {{ vcenter_info.datacenter }} \
-network {{ vcenter_info.network }} \
-vm {{ item.instance.hw_name }}
vappprop-manager \
--server {{ vapp['hv.fqdn'] }} \
--username {{ vapp['hv.username'] }} \
--password {{ vapp['hv.password'] }} \
--datacenter {{ vcenter_info.datacenter }} \
--network {{ vcenter_info.network }} \
--virtualmachine {{ item.instance.hw_name }}
when: existing_ova.results[index] is failed
loop: "{{ ova_deploy.results }}"
loop_control: