1
0
Fork 0
formula-sudoers/sudoers/templates/sudoers.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 -%}