Fix variable/tasks name
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
---
|
||||
- hosts: 127.0.0.1
|
||||
- hosts: localhost
|
||||
connection: local
|
||||
gather_facts: false
|
||||
# become: true
|
||||
|
@ -1,7 +1,10 @@
|
||||
- name: Store current vApp configuration
|
||||
ansible.builtin.shell:
|
||||
cmd: vmtoolsd --cmd "info-get guestinfo.ovfEnv"
|
||||
register: ovfEnv
|
||||
register: ovfenv
|
||||
- name: DEBUG variable contents
|
||||
ansible.builtin.debug:
|
||||
ovfenv
|
||||
- name: Parse XML into variables
|
||||
community.general.xml:
|
||||
xmlstring: "{{ ovfEnv }}"
|
||||
|
Reference in New Issue
Block a user