adding Alpine specific installations

This commit is contained in:
Matthew Stobbs
2025-03-10 14:53:36 -06:00
parent aff4fddfb4
commit 51d97dd18f
32 changed files with 178 additions and 38 deletions

13
tasks/archive/packer.yml Normal file
View File

@@ -0,0 +1,13 @@
- name: Download packer archive
ansible.builtin.get_url:
dest: "{{ d_tempdir.path }}/{{ packer.archive.file }}"
url: "{{ packer.archive.url }}/{{ packer.archive.file }}"
decompress: false
mode: '0644'
- name: Extract packer archive
become: "{{ ext_become }}"
ansible.builtin.unarchive:
dest: "{{ path.archive }}/packer"
src: "{{ d_tempdir.path }}/{{ packer.archive.file }}"
remote_src: true