Alan Orth
a38e2a4ff6
I can't remember right now why I needed to use Debian's MariaDB build but now I just want to use upstream's latest stable. Debian's version is 10.1 and upstream has moved on to 10.2.
11 lines
381 B
Django/Jinja
11 lines
381 B
Django/Jinja
# {{ ansible_managed }}
|
|
{% if ansible_distribution == 'Ubuntu' %}
|
|
|
|
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.2/ubuntu {{ ansible_distribution_release }} main
|
|
|
|
{% elif ansible_distribution == 'Debian' %}
|
|
|
|
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.2/debian {{ ansible_distribution_release }} main
|
|
|
|
{% endif %} {# ansible_distribution #}
|