deploy coolify
Some checks failed
Infrastructure / Check and run Ansbile playbooks (push) Failing after 9m38s

This commit is contained in:
2025-02-12 16:16:54 +00:00
parent c2cce6b442
commit e77982bf6a
3 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
- name: Initialise VM
hosts: coolify
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
become: true
- name: Enable qemu-guest-agent
ansible.builtin.systemd:
name: qemu-guest-agent
state: started
enabled: true
become: true