8 lines
486 B
Django/Jinja
8 lines
486 B
Django/Jinja
# {{ item.name }} sources.list entry
|
|
# {{ ansible_managed }}
|
|
|
|
deb {% if item.gpg_url is defined and item.gpg_url -%}[signed-by=/etc/apt/trusted.gpg.d/{{ item.name }}.gpg] {% endif -%} {{ item.url }} {{ item.distribution }} {{ item.components|join(' ') }}
|
|
{% if item.has_src %}
|
|
deb-src {% if item.gpg_url is defined and item.gpg_url -%}[signed-by=/etc/apt/trusted.gpg.d/{{ item.name }}.gpg] {% endif -%} {{ item.url }} {{ item.distribution }} {{ item.components|join(' ') }}
|
|
{% endif %}
|