|
46 | 46 | - install
|
47 | 47 | - "{{ ansible_parent_role_names | first | regex_replace(ansible_collection_name ~ '.', '') }}_install"
|
48 | 48 |
|
49 |
| -- name: "Create localhost binary cache path" |
| 49 | +- name: "Create binary cache path on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}" |
50 | 50 | ansible.builtin.file:
|
51 | 51 | path: "{{ _common_local_cache_path }}"
|
52 | 52 | state: directory
|
53 | 53 | mode: 0755
|
54 |
| - delegate_to: localhost |
| 54 | + delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}" |
55 | 55 | check_mode: false
|
56 | 56 | become: false
|
57 | 57 | tags:
|
|
78 | 78 | run_once: true
|
79 | 79 | when: (_common_checksums_url)
|
80 | 80 |
|
81 |
| - - name: "Download {{ __common_binary_basename }}" |
| 81 | + - name: "Download {{ __common_binary_basename }} from {{ _common_binary_url }} on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}" |
82 | 82 | ansible.builtin.get_url:
|
83 | 83 | url: "{{ _common_binary_url }}"
|
84 | 84 | dest: "{{ _common_local_cache_path }}/{{ _common_binary_name | default(__common_binary_basename) }}"
|
|
90 | 90 | retries: 5
|
91 | 91 | delay: 2
|
92 | 92 | # run_once: true # <-- this can't be set due to multi-arch support
|
93 |
| - delegate_to: localhost |
| 93 | + delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}" |
94 | 94 | check_mode: false
|
95 | 95 |
|
96 |
| - - name: "Unpack binary archive {{ __common_binary_basename }}" |
| 96 | + - name: "Unpack binary archive {{ __common_binary_basename }} on {{ 'remote host' if (_common_remote_download | bool) else 'localhost'}}" |
97 | 97 | ansible.builtin.unarchive:
|
98 | 98 | src: "{{ _common_local_cache_path }}/{{ __common_binary_basename }}"
|
99 | 99 | dest: "{{ _common_local_cache_path }}"
|
100 | 100 | mode: 0755
|
101 | 101 | list_files: true
|
102 | 102 | extra_opts: "{{ _common_binary_unarchive_opts | default(omit, true) }}"
|
103 |
| - delegate_to: localhost |
| 103 | + remote_src: "{{ _common_remote_download | bool }}" |
| 104 | + delegate_to: "{{ omit if (_common_remote_download | bool) else 'localhost' }}" |
104 | 105 | check_mode: false
|
105 | 106 | when: __common_binary_basename is search('\.zip$|\.tar\.gz$')
|
106 | 107 |
|
|
129 | 130 | mode: 0755
|
130 | 131 | owner: root
|
131 | 132 | group: root
|
| 133 | + remote_src: "{{ _common_remote_download | bool }}" |
132 | 134 | loop: "{{ _common_binaries }}"
|
133 | 135 | become: true
|
134 | 136 | notify:
|
|
0 commit comments