Follow redirects when fetching checksums file

This commit is contained in:
Christian Bryn 2021-10-04 02:14:54 +02:00
parent f74de4a831
commit 48049759cb

View File

@ -30,7 +30,7 @@
- block: - block:
- name: Get checksum list - name: Get checksum list
set_fact: set_fact:
__loki_checksums: "{{ lookup('url', 'https://github.com/grafana/loki/releases/download/v' + loki_version + '/SHA256SUMS', wantlist=True) | list }}" __loki_checksums: "{{ lookup('url', 'https://github.com/grafana/loki/releases/download/v' + loki_version + '/SHA256SUMS', wantlist=True, follow_redirects='yes') | list }}"
run_once: true run_once: true
- name: Get checksum for bins - name: Get checksum for bins