aboutsummaryrefslogtreecommitdiffstats
path: root/roles/debian/templates/sources.list.j2
blob: b6c54c34f1c7cad17e47bae390fd6faa2c8ef110 (plain) (blame)
1
2
3
4
5
6
7
8
{% for name, opts in apt_sources|dictsort(true) %}
{% if opts is mapping %}
deb {{ apt_repos[name]['uri'] }} {{ apt_repos[name].suite }} {{ opts.components|join(' ') }}
{% if 'source' in opts and opts.source %}
deb-src {{ apt_repos[name]['uri'] }} {{ apt_repos[name].suite }} {{ opts.components|join(' ') }}
{% endif %}
{% endif %}
{% endfor %}