14 lines
426 B
YAML
14 lines
426 B
YAML
- 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
|