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