main: Install qemu-guest-agent on proxmox VMs

proxmox UI can show more VM specific information if qemu-guest-agent is
installed in guest VMs.
This commit is contained in:
Alexander Dahl 2022-07-22 21:46:12 +02:00
parent 953f116b6f
commit 01c8d9d896

View file

@ -35,6 +35,16 @@
include_role: include_role:
name: users name: users
- hosts: proxmox
become: true
tasks:
- name: Ensure qemu guest agent is installed on proxmox VMs
ansible.builtin.apt:
pkg: qemu-guest-agent
state: present
- name: Tau specific setup - name: Tau specific setup
import_playbook: tau.yml import_playbook: tau.yml