ansible/roles/telegraf/tasks/start.yml

13 lines
256 B
YAML

---
- 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