community.general.xenserver_facts – get facts reported on xenserver¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.xenserver_facts
.
Examples¶
- name: Gather facts from xenserver
community.general.xenserver_facts:
- name: Print running VMs
ansible.builtin.debug:
msg: "{{ item }}"
with_items: "{{ xs_vms.keys() }}"
when: xs_vms[item]['power_state'] == "Running"
# Which will print:
#
# TASK: [Print running VMs] ***********************************************************
# skipping: [10.13.0.22] => (item=CentOS 4.7 (32-bit))
# ok: [10.13.0.22] => (item=Control domain on host: 10.0.13.22) => {
# "item": "Control domain on host: 10.0.13.22",
# "msg": "Control domain on host: 10.0.13.22"
# }
Authors¶
Andy Hill (@andyhky)
Tim Rupp (@caphrim007)
Robin Lee (@cheese)