This commit is contained in:
2024-04-02 21:58:26 +02:00
parent 8a7c4f3724
commit 6a2fbcee07
9 changed files with 219 additions and 0 deletions

View File

@ -0,0 +1,19 @@
- hosts: "{{ hosts }}"
become: yes
tasks:
- name: install core packages
apt:
name:
- prometheus-node-exporter
- nfs-common
- qemu-guest-agent
- unzip
update_cache: yes
- name: start guest qemu-guest-agent
service:
name: qemu-guest-agent
state: started
enabled: yes