19 lines
588 B
Text
19 lines
588 B
Text
{% from "haproxy/map.jinja" import haproxy with context %}
|
|
|
|
{% set config_file = salt['pillar.get']('haproxy:config_file_path', haproxy.config_file) %}
|
|
haproxy.config:
|
|
file.managed:
|
|
- name: {{ config_file }}
|
|
- source: {{ haproxy.config_file_source }}
|
|
- template: jinja
|
|
- user: {{ haproxy.user }}
|
|
- group: {{ haproxy.group }}
|
|
- mode: 644
|
|
- require_in:
|
|
- service: haproxy.service
|
|
- watch_in:
|
|
- service: haproxy.service
|
|
{% if salt['pillar.get']('haproxy:overwrite', default=True) == False %}
|
|
- unless:
|
|
- test -e {{ config_file }}
|
|
{% endif %}
|