Alan Orth
b47f66512d
Also disables the fetching of i386 packages because the mirror does not appear to have them anymore (and I wasn't using them anyways).
11 lines
367 B
Django/Jinja
11 lines
367 B
Django/Jinja
# {{ ansible_managed }}
|
|
{% if ansible_distribution == 'Ubuntu' %}
|
|
|
|
deb [arch=amd64] http://mirror.23media.de/mariadb/repo/10.3/ubuntu {{ ansible_distribution_release }} main
|
|
|
|
{% elif ansible_distribution == 'Debian' %}
|
|
|
|
deb [arch=amd64] http://mirror.23media.de/mariadb/repo/10.3/debian {{ ansible_distribution_release }} main
|
|
|
|
{% endif %} {# ansible_distribution #}
|