10 lines
190 B
YAML
10 lines
190 B
YAML
|
---
|
||
|
- hosts: proxmox
|
||
|
become: true
|
||
|
|
||
|
tasks:
|
||
|
- name: Ensure qemu guest agent is installed on proxmox VMs
|
||
|
ansible.builtin.apt:
|
||
|
pkg: qemu-guest-agent
|
||
|
state: present
|