role_apt/templates/repository.sources.j2

13 lines
232 B
Plaintext
Raw Normal View History

2024-06-03 16:05:23 +00:00
# {{ ansible_managed }}
2024-06-05 11:26:41 +00:00
{% for item in apt_repositories %}
2024-06-03 16:05:23 +00:00
Types: deb
URIs: {{ item.url }}
Suites: {{ item.suites }}
Components: {{ item.components }}
Signed-By: {{ item.key_path }}
2024-06-05 11:26:41 +00:00
{% if not loop.last %}
{% endif %}
{% endfor %}