Skip to content

Instantly share code, notes, and snippets.

Created September 8, 2017 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/726ef0c0bfdfc15f27abe8061c2e23ac to your computer and use it in GitHub Desktop.
Save anonymous/726ef0c0bfdfc15f27abe8061c2e23ac to your computer and use it in GitHub Desktop.
# This file is managed by SaltStack.
{% for profile, settings in config.items() %}
{%- if profile == 'default'-%}
[{{ profile }}]
{%- else -%}
[profile {{ profile }}]
{%- endif -%}
{%- if settings != None -%}
{%- for setting, value in settings.items() %}
{{ setting }}={{ value }}
{% endfor %}
{%- endif -%}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment