roles/mariadb: Use a template for sources

When you use the apt_repository module it adds a sources.list with
an annoying filename, and also it's just easier to use a template
when we have different distros/versions to support.
This commit is contained in:
2016-04-15 11:40:32 +03:00
parent a0bb4c2f57
commit 35d0bee6cf
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,10 @@
{% if ansible_distribution == 'Ubuntu' and ansible_distribution_version == '16.04' %}
# there are no xenial builds yet, so use wily
deb [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.1/ubuntu wily 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 #}