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:
parent
953f116b6f
commit
01c8d9d896
1 changed files with 10 additions and 0 deletions
10
main.yml
10
main.yml
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue