2b83ca0860
at the moment only Debian managed, FreeBSD exception still in state
11 lines
290 B
Text
11 lines
290 B
Text
{% from "haproxy/map.jinja" import haproxy with context %}
|
|
|
|
haproxy.install:
|
|
pkg.installed:
|
|
- name: {{ haproxy.package }}
|
|
{% if salt['pillar.get']('haproxy:require') %}
|
|
- require:
|
|
{% for item in salt['pillar.get']('haproxy:require') %}
|
|
- {{ item }}
|
|
{% endfor %}
|
|
{% endif %}
|