christianlempa-boilerplates/ansible/installation/inst-qemu-agent.yaml
Christoph Schug 3f4672e97c fix: fix file names
- Ansible playbooks should have an `.yaml` file extension

- all files related to installation should be consistently prefixed
  wth `inst-`
2024-02-22 23:45:19 +01:00

11 lines
206 B
YAML

---
- name: Install qemu-guest-agent package
hosts: all
become: true
become_method: sudo
tasks:
- name: Install qemu-guest-agent
apt:
name: qemu-guest-agent
state: present