servers/roles/prometheus/handlers/main.yml
2025-11-13 15:19:48 +01:00

11 lines
249 B
YAML

- name: reload prometheus
service:
name: prometheus
state: reloaded
when: "'handler' not in ansible_skip_tags"
- name: restart prometheus
service:
name: prometheus
state: restarted
when: "'handler' not in ansible_skip_tags"