Browse Source

fix(download): validate mirrors on localhost (#9669)

pull/9060/head
Maxime Picaud 1 year ago
committed by GitHub
parent
commit
f6e4a231cb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. 1
      roles/download/tasks/download_file.yml

1
roles/download/tasks/download_file.yml

@ -63,6 +63,7 @@
delegate_to: "{{ download_delegate if download_force_cache else inventory_hostname }}"
run_once: "{{ download_force_cache }}"
register: uri_result
become: "{{ not download_localhost }}"
until: uri_result is success
retries: "{{ download_retries }}"
delay: "{{ retry_stagger | default(5) }}"

Loading…
Cancel
Save