roles/mariadb: Use Ubuntu 17.10's packages on Ubuntu 18.04

There are no mariadb packages for Ubuntu 18.04 "bionic" yet so we
should use Ubuntu 17.10 "artful".
This commit is contained in:
Alan Orth 2018-03-17 13:41:16 +02:00
parent c5bebf0336
commit 6c093801c4
1 changed files with 5 additions and 0 deletions

View File

@ -1,7 +1,12 @@
# {{ ansible_managed }}
{% if ansible_distribution == 'Ubuntu' %}
{% if ansible_distribution_release == 'bionic' %}
# 2018-03-17: no Ubuntu 18.04 "bionic" packages yet, so use 17.10 "artful"
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.2/ubuntu artful main
{% else %}
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.2/ubuntu {{ ansible_distribution_release }} main
{% endif %}
{% elif ansible_distribution == 'Debian' %}