mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-07 17:03:59 +01:00
3f4672e97c
- Ansible playbooks should have an `.yaml` file extension - all files related to installation should be consistently prefixed wth `inst-`
11 lines
206 B
YAML
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
|