Ubuntu 20.04 on QEmu working

This commit is contained in:
Greg Hellings
2022-05-04 09:00:17 -05:00
parent 950500c9f1
commit ff59effbb1
43 changed files with 757 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
- become: true
block:
- name: install epel-release
package:
name: epel-release
state: present
- name: disable epel
ini_file:
path: /etc/yum.repos.d/epel.repo
section: epel
option: enabled
value: "0"
create: false
when: >
ansible_facts['distribution'] in ['CentOS', 'RHEL']