feat: add basic alpine support
This commit is contained in:
parent
72ac5e0d40
commit
5dfc4a5f21
4 changed files with 51 additions and 1 deletions
21
tasks/apk/packages.yaml
Normal file
21
tasks/apk/packages.yaml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue