12 lines
310 B
YAML
12 lines
310 B
YAML
---
|
|
- name: Download {{ exporter_node_dl_filename }}
|
|
get_url:
|
|
url: {{ exporter_node_dl_url }}
|
|
dest: {{ exporter_node_full_path }}
|
|
mode: '0664'
|
|
|
|
- name: Extract {{ exporter_node_dl_filename }}
|
|
unarchive:
|
|
src: {{ exporter_node_full_path }}
|
|
dest: {{ exporter_node_dl_path }}/node_exporter
|