1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00
ansible-collection-prometheus/roles/prometheus/handlers/main.yml
2021-11-06 05:22:17 +01:00

15 lines
314 B
YAML

---
- name: systemctl daemon-reload
ansible.builtin.systemd:
daemon_reload: yes
- name: restart prometheus
ansible.builtin.service:
name: prometheus.service
state: restarted
- name: restart blackbox exporter
ansible.builtin.service:
name: prometheus-blackbox-exporter
state: restarted