Spike for ovirt guest agent

This commit is contained in:
Patrick Toal
2018-08-14 12:10:29 -04:00
parent 646bed93c2
commit 3dba9426b4
3 changed files with 16 additions and 10 deletions

View File

@@ -1,10 +0,0 @@
---
- name: Install /tmp/hello.txt
hosts: all
tasks:
- name: Install hello file
copy:
src: files/hello.txt
dest: /tmp/hello.txt

1
site.retry Normal file
View File

@@ -0,0 +1 @@
minecraft1.lab.toal.ca

15
site.yml Normal file
View File

@@ -0,0 +1,15 @@
---
# 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"