roles/nginx: Fix logic error in apt sources template
This commit is contained in:
parent
372eb26450
commit
ca293289aa
@ -1,14 +1,14 @@
|
|||||||
{{ ansible_managed | comment }}
|
{{ ansible_managed | comment }}
|
||||||
|
|
||||||
{% if ansible_distribution == 'Ubuntu' %}
|
{% if ansible_distribution == 'Ubuntu' %}
|
||||||
|
|
||||||
{% if nginx_version == "stable" %}
|
{% if nginx_version == "stable" %}
|
||||||
deb [arch=amd64] https://nginx.org/packages/ubuntu/ {{ ansible_distribution_release }} nginx
|
deb [arch=amd64] https://nginx.org/packages/ubuntu/ {{ ansible_distribution_release }} nginx
|
||||||
{% elif nginx_version == "mainline" %}
|
{% elif nginx_version == "mainline" %}
|
||||||
deb [arch=amd64] https://nginx.org/packages/mainline/ubuntu/ {{ ansible_distribution_release }} nginx
|
deb [arch=amd64] https://nginx.org/packages/mainline/ubuntu/ {{ ansible_distribution_release }} nginx
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if ansible_distribution == 'Debian' and ansible_distribution_release == 'buster' %}
|
{% elif ansible_distribution == 'Debian' and ansible_distribution_release == 'buster' %}
|
||||||
# there are no tarsnap packages for Debian 10 "buster" yet, so use Debian 9's
|
# there are no tarsnap packages for Debian 10 "buster" yet, so use Debian 9's
|
||||||
{% if nginx_version == "stable" %}
|
{% if nginx_version == "stable" %}
|
||||||
deb [arch=amd64] https://nginx.org/packages/debian/ stretch nginx
|
deb [arch=amd64] https://nginx.org/packages/debian/ stretch nginx
|
||||||
@ -16,11 +16,11 @@ deb [arch=amd64] https://nginx.org/packages/debian/ stretch nginx
|
|||||||
deb [arch=amd64] https://nginx.org/packages/mainline/debian/ stretch nginx
|
deb [arch=amd64] https://nginx.org/packages/mainline/debian/ stretch nginx
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# else, distribution is not Debian buster #}
|
{% elif ansible_distribution == 'Debian' and ansible_distribution_release != 'buster' %}
|
||||||
{% else %}
|
|
||||||
{% if nginx_version == "stable" %}
|
{% if nginx_version == "stable" %}
|
||||||
deb [arch=amd64] https://nginx.org/packages/debian/ {{ ansible_distribution_release }} nginx
|
deb [arch=amd64] https://nginx.org/packages/debian/ {{ ansible_distribution_release }} nginx
|
||||||
{% elif nginx_version == "mainline" %}
|
{% elif nginx_version == "mainline" %}
|
||||||
deb [arch=amd64] https://nginx.org/packages/mainline/debian/ {{ ansible_distribution_release }} nginx
|
deb [arch=amd64] https://nginx.org/packages/mainline/debian/ {{ ansible_distribution_release }} nginx
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user