formula-haproxy/haproxy/service.sls
2015-07-23 13:46:56 +10:00

20 lines
418 B
Plaintext

haproxy.service:
service.running:
- name: haproxy
- enable: True
- reload: True
- require:
- pkg: haproxy
- watch:
- file: haproxy.config
file.replace:
- name: /etc/default/haproxy
{% if salt['pillar.get']('haproxy:enabled', True) %}
- pattern: ENABLED=0$
- repl: ENABLED=1
{% else %}
- pattern: ENABLED=1$
- repl: ENABLED=0
{% endif %}
- show_changes: True