0
0
mirror of https://github.com/saltstack-formulas/sudoers-formula.git synced 2024-11-28 00:48:12 +01:00
sudoers-formula/sudoers/templates/sudoers.jinja

8 lines
263 B
Plaintext
Raw Permalink Normal View History

2019-04-24 17:23:04 +02:00
{%- if config.command is iterable and config.command is not string -%}
2019-04-24 11:03:27 +02:00
{% for command in config.command -%}
{{ for_user }} {{ config.privileges }}: {{ command }}
{% endfor %}
2019-04-24 17:23:04 +02:00
{%- else -%}
{{ for_user }} {{ config.privileges }}: {{ config.command }}
2019-04-24 11:03:27 +02:00
{%- endif -%}