WIP: Initial VM provisioning #4

Closed
cyclane wants to merge 38 commits from initial-vm-provisioning into main
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 41a0c9393e - Show all commits

View File

@ -71,7 +71,7 @@
register: start
- name: Wait # Initial apt update, apt upgrade, cloud-init
ansible.builtin.wait_for:
timeout: 180
timeout: 90
# VM Configuration
- name: Resize disk

View File

@ -16,8 +16,10 @@
ansible.builtin.apt:
update_cache: true
name: qemu-guest-agent
become: true
- name: Enable some stuff
ansible.builtin.systemd:
name: qemu-guest-agent
state: started
enabled: true
become: true