Working userlist implementation
This commit is contained in:
parent
2019204b01
commit
86cf6b1a09
1 changed files with 12 additions and 2 deletions
|
@ -27,12 +27,22 @@ global
|
||||||
|
|
||||||
{%- for id, userlist in salt['pillar.get']('haproxy:userlists', {}).iteritems() %}
|
{%- for id, userlist in salt['pillar.get']('haproxy:userlists', {}).iteritems() %}
|
||||||
userlist {{ id }}
|
userlist {{ id }}
|
||||||
{%- for entry in userlist.iteritems() %}
|
{%- for id, entry in userlist.iteritems() %}
|
||||||
{{ entry }}
|
{%- if id == "groups" %}
|
||||||
|
{%- for group in entry.iteritems() %}
|
||||||
|
group {{ group[0] }} {{ group[1] }}
|
||||||
|
{%- endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{%- if id == "users" %}
|
||||||
|
{%- for user in entry.iteritems() %}
|
||||||
|
user {{ user[0] }} {{ user[1] }}
|
||||||
|
{%- endfor %}
|
||||||
|
{% endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
# common defaults that all the 'listen' and 'backend' sections will
|
# common defaults that all the 'listen' and 'backend' sections will
|
||||||
# use if not designated in their block
|
# use if not designated in their block
|
||||||
|
|
Loading…
Reference in a new issue