21 lines
365 B
YAML
21 lines
365 B
YAML
---
|
|
|
|
# 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"
|