Alan Orth
c148da73e7
Tarsnap currently provides experimental packages for Debian Buster. See: https://www.tarsnap.com/pkg-deb.html#experimental
8 lines
354 B
Django/Jinja
8 lines
354 B
Django/Jinja
{% if ansible_distribution_release == 'buster' %}
|
|
# 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 %}
|