roles/common: Use experimental Tarsnap on Debian buster

Tarsnap currently provides experimental packages for Debian Buster.

See: https://www.tarsnap.com/pkg-deb.html#experimental
This commit is contained in:
2019-07-19 12:07:27 +03:00
parent e124cac945
commit c148da73e7
2 changed files with 11 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{% if ansible_distribution_release == 'buster' %}
# there are no tarsnap packages for Debian 10 "buster" yet, so use Debian 9's
deb [arch=amd64] https://pkg.tarsnap.com/deb/stretch ./
# Tarsnap currently provides experimental packages for Debian 10 "buster"
# See: https://www.tarsnap.com/pkg-deb.html#experimental
deb [arch=amd64] http://pkg.tarsnap.com/experimental/deb/buster ./
{% else %}
deb [arch=amd64] https://pkg.tarsnap.com/deb/{{ ansible_distribution_release }} ./
{% endif %}