Merge pull request #307 from M2Mobi/external_auth
Fix rendering of external_auth config.
This commit is contained in:
commit
eaf9fc98f6
@ -511,7 +511,34 @@ external_auth:
|
|||||||
{%- for user, commands in users.iteritems() %}
|
{%- for user, commands in users.iteritems() %}
|
||||||
{{ user }}:
|
{{ user }}:
|
||||||
{%- for command in commands %}
|
{%- for command in commands %}
|
||||||
|
{%- if command is mapping %}
|
||||||
|
{%- for target, targetcommands in command.iteritems() %}
|
||||||
|
- {% raw %}'{% endraw %}{{ target }}{% raw %}'{% endraw %}:
|
||||||
|
{%- for targetcommand in targetcommands %}
|
||||||
|
{%- if targetcommand is mapping %}
|
||||||
|
{%- for module, options in targetcommand.iteritems() %}
|
||||||
|
- {% raw %}'{% endraw %}{{ module }}{% raw %}'{% endraw %}:
|
||||||
|
{%- for category, arguments in options.iteritems() %}
|
||||||
|
{% raw %}'{% endraw %}{{ category }}{% raw %}'{% endraw %}:
|
||||||
|
{%- if arguments is mapping %}
|
||||||
|
{%- for key, argument in arguments.iteritems() %}
|
||||||
|
{% raw %}'{% endraw %}{{ key }}{% raw %}'{% endraw %}: {% raw %}'{% endraw %}{{ argument }}{% raw %}'{% endraw %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- else %}
|
||||||
|
{%- for argument in arguments %}
|
||||||
|
- {% raw %}'{% endraw %}{{ argument }}{% raw %}'{% endraw %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- endif %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- else %}
|
||||||
|
- {% raw %}'{% endraw %}{{ targetcommand }}{% raw %}'{% endraw %}
|
||||||
|
{%- endif %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- else %}
|
||||||
- {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
|
- {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
|
||||||
|
{%- endif %}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
Loading…
Reference in New Issue
Block a user