Alan Orth
314a33d37c
We had been using the Ubuntu 17.10 "artful" builds for Ubuntu 18.04 "bionic" but there are now official bionic builds.
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 #}
|