mirror of
https://github.com/saltstack-formulas/sudoers-formula.git
synced 2024-11-28 02:57:52 +01:00
8 lines
263 B
Django/Jinja
8 lines
263 B
Django/Jinja
{%- if config.command is iterable and config.command is not string -%}
|
|
{% for command in config.command -%}
|
|
{{ for_user }} {{ config.privileges }}: {{ command }}
|
|
{% endfor %}
|
|
{%- else -%}
|
|
{{ for_user }} {{ config.privileges }}: {{ config.command }}
|
|
{%- endif -%}
|