ansible/roles/gitea/templates/app.ini.j2

15 lines
303 B
Plaintext
Raw Permalink Normal View History

2019-11-25 00:50:21 +00:00
# {{ ansible_managed }}
{% for section, body in gitea_config | dictsort %}
[{{ section }}]
{% for k, v in body | dictsort %}
{% if v is sameas true %}
{{ k | upper }} = true
{% elif v is sameas false %}
{{ k | upper }} = false
{% else %}
{{ k | upper }} = {{ v }}
{% endif %}
{% endfor %}
{% endfor %}