adding more alpine specific build_deps

This commit is contained in:
Matthew Stobbs
2025-03-20 21:56:33 -06:00
parent ba54af35e6
commit 40e9e97cce
11 changed files with 88 additions and 13 deletions

View File

@@ -13,6 +13,30 @@
ansible.builtin.include_tasks:
file: facts.yml
- name: Dump paths
when:
- debug
ansible.builtin.debug:
msg: "{{ path | dict2items }}"
- name: Dump vars
when:
- debug
ansible.builtin.debug:
var: ext_become
- name: Dump use_local
when:
- debug
ansible.builtin.debug:
var: use_local
- name: Dump packages
when:
- debug
ansible.builtin.debug:
var: packages
- name: Ensure required path exist
become: "{{ ext_become }}"
loop: "{{ path | dict2items }}"