ansible/roles/telegraf/tasks/start.yml

13 lines
256 B
YAML
Raw Normal View History

2021-01-10 19:11:32 +01:00
---
- name: Start the Telegraf service
service:
name: telegraf
state: started
enabled: yes
# Only care to check the status if the state changed to 'started'
notify:
- "pause"
- "check status"
- "assert running"
become: true