minor: Add Gitea to SCM role
This commit is contained in:
14
templates/app.ini.j2
Normal file
14
templates/app.ini.j2
Normal file
@@ -0,0 +1,14 @@
|
||||
; {{ 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 %}
|
||||
Reference in New Issue
Block a user