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