Files
toallab-automation/site.yml
2018-08-15 13:14:03 -04:00

22 lines
488 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:
name: ovirt-guest-agent
state: running
when: ansible_virtualization_type == "RHEV"