Ongoing work to establish working baseline

This commit is contained in:
Ethan N. Paul
2018-11-25 23:33:42 -05:00
parent a5e418f940
commit ba4ce45f96
8 changed files with 201 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
- name: Check system compatibility
when: ansible_distribution != "CentOS" and ansible_distribution != "Red Hat Enterprise Linux"
meta: end_play
debug:
msg: "Hypervisor deployment is only supported on CentOS and RHEL"
- name: Install OVirt repository
become: true
yum:
name: http://resources.ovirt.org/pub/yum-repo/ovirt-release42.rpm
state: latest
- name: Install OVirt Engine
become: true
yum:
name: ovirt-engine
state: latest