Files
toallab-automation/site.yml
2018-08-15 11:55:54 -04:00

21 lines
475 B
YAML

---
# This is mostly just a spike at this point.
# This will eventually be refactored into roles.
- name: Virtual Machine setup
hosts: all
become: true
tasks:
- name: Install ovirt-guest-agent on RHV Guests
yum:
name: ovirt-guest-agent
state: latest
when: ansible_virtualization_type == "RHEV"
- name: ovirt-guest-agent service is running
service: ovirt-guest-agent
state: running
when: ansible_virtualization_type == "RHEV"