Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
haxorof committed Mar 9, 2024
1 parent ec06f64 commit 85236b7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tasks/nexus_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
mode: "0644"
check_mode: false
register: download_status
until: download_status.status_code == 200
until: download_status.status_code == 200 or download_status.status_code == 304
retries: "{{ nexus_download_retries }}"
delay: "{{ nexus_download_delay }}"
notify:
Expand Down Expand Up @@ -449,6 +449,10 @@
owner: root
group: root
mode: "0644"
register: download_status
until: download_status.status_code == 200 or download_status.status_code == 304
retries: "{{ nexus_download_retries }}"
delay: "{{ nexus_download_delay }}"
with_items: "{{ nexus_plugin_urls }}"

- name: Run all notified handlers now
Expand Down

0 comments on commit 85236b7

Please sign in to comment.