Add alpine role

Base packages and SSH config, and QEMU guest agent for VMs.
This commit is contained in:
Timotej Lazar 2024-05-18 15:07:20 +02:00
parent be915dcf69
commit c2c1fdbe40
4 changed files with 54 additions and 13 deletions

View file

@ -0,0 +1,10 @@
- name: reload sshd
service:
name: sshd
state: reloaded
when: "'handler' not in ansible_skip_tags"
- name: update package cache
package:
update_cache: true
when: "'handler' not in ansible_skip_tags"