13 lines
256 B
YAML
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
|