13 lines
232 B
Django/Jinja
13 lines
232 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% for item in apt_repositories %}
|
|
Types: deb
|
|
URIs: {{ item.url }}
|
|
Suites: {{ item.suites }}
|
|
Components: {{ item.components }}
|
|
Signed-By: {{ item.key_path }}
|
|
{% if not loop.last %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|