ansible-gitea/templates/app.ini.j2
2023-12-08 12:36:24 +01:00

11 lines
217 B
Django/Jinja

{# vim: filetype=ini.jinja2 #}
{{ ansible_managed | comment }}
{% for key, options in _gitea_options.items() %}
[{{ key }}]
{% for k, v in options.items() if v != omit %}
{{ k }} = {{ v }}
{% endfor %}
{% endfor %}