infra/roles/common/templates/apt.list.tasks.j2

10 lines
299 B
Plaintext
Raw Normal View History

2018-10-02 09:12:23 +03:00
# {{ansible_managed}}
{% for t in stack.apt_sources_from_tasks %}
{% if t is mapping %}
{% if inventory_hostname_short in t.binds %}
rpm http://git.altlinux.org repo/{{t.id}}/{{node.arch}} task
{% endif %}
{% else %}
rpm http://git.altlinux.org repo/{{t}}/{{node.arch}} task
{% endif %}
{% endfor %}