2023-04-15 00:40:47 +02:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
|
|
|
APP_NAME = {{ gitea_app_name }}
|
|
|
|
RUN_MODE = {{ gitea_run_mode }}
|
|
|
|
RUN_USER = {{ gitea_run_user }}
|
|
|
|
|
2023-04-16 14:22:26 +02:00
|
|
|
{% for section in gitea_config %}
|
2023-04-15 00:40:47 +02:00
|
|
|
[{{ section }}]
|
2024-04-04 13:06:31 +02:00
|
|
|
{% if gitea_config[section] is not none %}
|
2023-04-16 14:22:26 +02:00
|
|
|
{% for entry, value in gitea_config[section].items() %}
|
2023-04-15 00:40:47 +02:00
|
|
|
{{ entry }} = {{ value }}
|
|
|
|
{% endfor %}
|
2024-04-04 13:06:31 +02:00
|
|
|
{% endif %}
|
2023-04-15 00:40:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|