generated from sebclem/ansible-role-template
15 lines
300 B
Plaintext
15 lines
300 B
Plaintext
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
APP_NAME = {{ gitea_app_name }}
|
||
|
RUN_MODE = {{ gitea_run_mode }}
|
||
|
RUN_USER = {{ gitea_run_user }}
|
||
|
|
||
|
{% for section in config %}
|
||
|
{% if section == "" %}
|
||
|
[{{ section }}]
|
||
|
{% for entry, value in config[section].items() %}
|
||
|
{{ entry }} = {{ value }}
|
||
|
{% endfor %}
|
||
|
|
||
|
|
||
|
{% endfor %}
|