24 lines
628 B
YAML
24 lines
628 B
YAML
#!/usr/bin/ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- name: Install and configure Influxdb
|
|
block:
|
|
- name: Install influxdb
|
|
block:
|
|
- name: Install package
|
|
apt:
|
|
name:
|
|
- influxdb
|
|
- influxdb-client
|
|
- name: Template out config
|
|
template:
|
|
src: "influxdb.conf"
|
|
dest: "/etc/influxdb/influxdb.conf"
|
|
notify: restart influxdb
|
|
- name: Install telegraf
|
|
block:
|
|
- name: Install package
|
|
apt:
|
|
deb: "https://dl.influxdata.com/telegraf/releases/telegraf_1.14.2-1_amd64.deb"
|
|
become: yes
|