unfi VM
Some checks failed
Infrastructure / Check and run Ansbile playbooks (push) Failing after 7m25s

This commit is contained in:
2024-07-13 16:13:39 +01:00
parent 73ccc218e8
commit 504939ce0d
3 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
- name: Initialise VM
hosts: unifi
gather_facts: false
tasks:
- name: Wait for connection
ansible.builtin.wait_for_connection:
timeout: 300
- name: Install system packages
ansible.builtin.apt:
update_cache: true
pkg:
- qemu-guest-agent
- parted
# For unifi
- ca-certificates
- curl
become: true
- name: Enable qemu-guest-agent
ansible.builtin.systemd:
name: qemu-guest-agent
state: started
enabled: true
become: true