paulbsd-salt/states/haproxy/service.sls
Paul 0655f8f329
All checks were successful
continuous-integration/drone/push Build is passing
updated haproxy state
2024-09-29 09:50:15 +02:00

13 lines
335 B
Plaintext

---
{%- from "haproxy/map.jinja" import haproxy with context %}
haproxy-service:
service.running:
- name: haproxy
- enable: true
- reload: true
- check_cmd:
- haproxy -f {{ haproxy.config.dir }}/{{ haproxy.config.configfile }} -c
{% if haproxy.acme %}
- watch:
- pki.fetched: pki-fetched-*
{% endif %}