This commit is contained in:
parent
2a9841fb0c
commit
8e2df51993
@ -10,6 +10,10 @@
|
|||||||
dest: "{{ archive.path }}"
|
dest: "{{ archive.path }}"
|
||||||
remote_src: yes
|
remote_src: yes
|
||||||
extra_opts: "{{ item.extra_opts | default(omit) }}"
|
extra_opts: "{{ item.extra_opts | default(omit) }}"
|
||||||
|
register: staticbinary_download
|
||||||
|
retries: 5
|
||||||
|
delay: 5
|
||||||
|
until: staticbinary_download is not failed
|
||||||
|
|
||||||
- name: Install extracted binary
|
- name: Install extracted binary
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
@ -7,9 +7,13 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
register: staticbinary_download
|
||||||
loop: "{{ dependencies.static_binaries | selectattr('archive', 'undefined') }}"
|
loop: "{{ dependencies.static_binaries | selectattr('archive', 'undefined') }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.filename }}"
|
label: "{{ item.filename }}"
|
||||||
|
retries: 5
|
||||||
|
delay: 5
|
||||||
|
until: staticbinary_download is not failed
|
||||||
|
|
||||||
- name: Download, extract & install archived static binaries
|
- name: Download, extract & install archived static binaries
|
||||||
include_tasks: dependencies.archive_compressed.yml
|
include_tasks: dependencies.archive_compressed.yml
|
||||||
|
Loading…
Reference in New Issue
Block a user