blob: b6c54c34f1c7cad17e47bae390fd6faa2c8ef110 (
plain) (
tree)
|
|
{% 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 %}
|