ansible: Add host for sles15sp5
[lttng-ci.git] / automation / ansible / roles / gitmirror / templates / grokmirror.conf.j2
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.029467 seconds and 4 git commands to generate.