mirror of
https://github.com/prometheus-community/ansible
synced 2024-12-11 21:02:31 +00:00
8 lines
469 B
YAML
8 lines
469 B
YAML
|
---
|
||
|
- name: "Get checksum for {{ go_arch_map[ansible_architecture] | default(ansible_architecture) }} architecture"
|
||
|
set_fact:
|
||
|
snmp_exporter_checksum: "{{ item.split(' ')[0] }}"
|
||
|
with_items:
|
||
|
- "{{ lookup('url', 'https://github.com/prometheus/snmp_exporter/releases/download/v' + snmp_exporter_version + '/sha256sums.txt', wantlist=True) | list }}"
|
||
|
when: "('linux-' + (go_arch_map[ansible_architecture] | default(ansible_architecture)) + '.tar.gz') in item"
|