feat: add basic alpine support

This commit is contained in:
Simon Cornet 2025-10-24 20:06:42 +02:00
commit 5dfc4a5f21
4 changed files with 51 additions and 1 deletions

21
tasks/apk/packages.yaml Normal file
View file

@ -0,0 +1,21 @@
---
# install packages
- name: "install packages"
community.general.apk:
name: "{{ item }}"
state: "present"
update_cache: true
cache_clean: true
when: 'ansible_os_family == "Alpine"'
with_items:
- "bash"
- "btop"
- "curl"
- "htop"
- "python3"
- "qemu-guest-agent"
- "sudo"
- "tzdata"
- "vim"
- "wget"