Alan Orth
c5bebf0336
There are no tarsnap packages for Ubuntu 18.04 "bionic" yet so we should use Ubuntu 17.10 "artful".
7 lines
260 B
Django/Jinja
7 lines
260 B
Django/Jinja
{% if ansible_distribution_release == 'bionic' %}
|
|
# 2018-03-17: no Ubuntu 18.04 "bionic" packages yet, so use 17.10 "artful"
|
|
deb https://pkg.tarsnap.com/deb/artful ./
|
|
{% else %}
|
|
deb https://pkg.tarsnap.com/deb/{{ ansible_distribution_release }} ./
|
|
{% endif %}
|