Alan Orth
96500a6e33
When I originally deployed Ubuntu 16.04 there were no public xenial MariaDB builds yet, so I used wily (15.10). Now there are official xenial builds so we can use them instead.
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.1/ubuntu {{ ansible_distribution_release }} main
|
|
|
|
{% elif ansible_distribution == 'Debian' %}
|
|
|
|
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.1/debian {{ ansible_distribution_release }} main
|
|
|
|
{% endif %} {# ansible_distribution #}
|