Move common site config into role

This commit is contained in:
Patrick Toal
2018-09-04 08:00:48 -04:00
parent 88e7731c34
commit 109ffbade6
10 changed files with 126 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
---
# Ensure that virtual guests have the guest tools installed.
- 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"