mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 11:53:12 +00:00
2f1e8a4be8
Add role for deploying the chrony_exporter. Signed-off-by: SuperQ <superq@gmail.com>
10 lines
222 B
YAML
10 lines
222 B
YAML
---
|
|
- name: Restart chrony_exporter
|
|
listen: "restart chrony_exporter"
|
|
become: true
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|
|
name: chrony_exporter
|
|
state: restarted
|
|
when:
|
|
- not ansible_check_mode
|