15 lines
289 B
YAML
15 lines
289 B
YAML
---
|
|
- name: Download the installation script
|
|
get_url:
|
|
url: https://my-netdata.io/kickstart.sh
|
|
dest: ~/kickstart.sh
|
|
mode: +x
|
|
|
|
- name: Install Netdata
|
|
command: ~/kickstart.sh --dont-wait
|
|
|
|
- name: Cleanup installation script
|
|
file:
|
|
path: ~/kickstart.sh
|
|
state: absent
|