adding Alpine specific installations
This commit is contained in:
13
tasks/archive/packer.yml
Normal file
13
tasks/archive/packer.yml
Normal 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
|
||||
Reference in New Issue
Block a user