mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-23 04:13:05 +00:00
11 lines
216 B
YAML
11 lines
216 B
YAML
|
---
|
||
|
- name: Restart bind_exporter
|
||
|
listen: "restart bind_exporter"
|
||
|
become: true
|
||
|
ansible.builtin.systemd:
|
||
|
daemon_reload: true
|
||
|
name: bind_exporter
|
||
|
state: restarted
|
||
|
when:
|
||
|
- not ansible_check_mode
|