Files
ansible_role_scm/templates/app.ini.j2

15 lines
389 B
Plaintext
Raw Normal View History

2026-04-08 18:05:00 -03:00
; {{ ansible_managed }}
; SPDX-License-Identifier: GPL-3.0-only
{% if 'DEFAULT' in gitea_app_ini %}
{% for key, value in gitea_app_ini['DEFAULT'].items() %}
{{ key }} = {{ value }}
{% endfor %}
{% endif %}
{% for section, entries in gitea_app_ini.items() if section != 'DEFAULT' %}
[{{ section }}]
{% for key, value in entries.items() %}
{{ key }} = {{ value }}
{% endfor %}
{% endfor %}