ansible-roles/haproxy/handlers/main.yml

19 lines
325 B
YAML
Raw Normal View History

---
- name: reload haproxy
service:
name: haproxy
state: reloaded
when: not ansible_check_mode
- name: restart haproxy
service:
name: haproxy
state: restarted
when: not ansible_check_mode
2018-02-13 16:35:55 +01:00
- name: restart munin-node
service:
name: munin-node
state: restarted
when: not ansible_check_mode