sudoers saltstack formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{%- 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 -%}
|
|
|