servers/roles/prometheus/handlers/main.yml
2025-11-04 14:18:56 +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"