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
+24
View File
@@ -0,0 +1,24 @@
- name: install guest additions
hosts: default
pre_tasks:
- name: update all the things
become: true
package:
name: "*"
state: latest
when: ansible_facts.pkg_mgr not in ['atomic_container']
- name: update atomic things
become: true
command: rpm-ostree upgrade
when: ansible_facts.pkg_mgr in ['atomic_container']
roles:
- role: virtualbox
when: packer_builder_type == 'virtualbox-iso'
- role: vmware
when: packer_builder_type == 'vmware-iso'
- role: init
- role: epel
- role: locale
- role: vagrant
- role: cleanup