ansible: Add and manage replacement git-mirror instance
[lttng-ci.git] / automation / ansible / roles / gitmirror / templates / grokmirror.conf.j2
CommitLineData
09bc9215
KS
1# {{name}}
2#
3{% for section, conf in data.items() %}
4[{{section}}]
5{% for key, value in conf.items() %}
6{% if value is not string and value is iterable %}
7{{key}} = {{value[0]}}
8{% for i in range(1, value|length) %}
9 {{value[i]}}
10{% endfor %}
11{% else %}
12{{key}} = {{value}}
13{% endif %}
14{% endfor %}
15
16{% endfor %}
This page took 0.022066 seconds and 4 git commands to generate.