summaryrefslogtreecommitdiffstats
path: root/roles/cgit/templates/cgitrepos
blob: f3fac9a4e7f895a96b5c0cd9a0f1fd2394c1b789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% if git_repositories is defined %}
{% for repo in git_repositories %}
{% if not repo.private is defined or not repo.private %}
repo.url={% if repo.url is defined %}
{{ repo.url }}
{% else %}
{{ repo.name }}
{% endif %}
repo.path={{ git_repositories_dir}}/{{ repo.name }}
repo.desc={{ repo.desc }}
repo.owner={{ repo.owner }}
{% endif %}
{% endfor %}
{% endif %}