Fix a few more Jinja2 filters used as tests
I had created these earlier in this branch before rebasing it on top of the Ansible 2.5.0 readiness branch. See: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.5.html
This commit is contained in:
@ -2,14 +2,14 @@
|
||||
|
||||
{% if ansible_distribution == 'Ubuntu' %}
|
||||
{% if nginx_version == "stable" %}
|
||||
{% if ansible_distribution_version | version_compare('18.04', '==') %}
|
||||
{% if ansible_distribution_version is version_compare('18.04', '==') %}
|
||||
# 2018-03-17: no Ubuntu 18.04 "bionic" packages yet, so use 17.10 "artful"
|
||||
deb https://nginx.org/packages/ubuntu/ artful nginx
|
||||
{% else %}
|
||||
deb https://nginx.org/packages/ubuntu/ {{ ansible_distribution_release }} nginx
|
||||
{% endif %}
|
||||
{% elif nginx_version == "mainline" %}
|
||||
{% if ansible_distribution_version | version_compare('18.04', '==') %}
|
||||
{% if ansible_distribution_version is version_compare('18.04', '==') %}
|
||||
# 2018-03-17: no Ubuntu 18.04 "bionic" packages yet, so use 17.10 "artful"
|
||||
deb https://nginx.org/packages/mainline/ubuntu/ artful nginx
|
||||
{% else %}
|
||||
|
@ -66,7 +66,7 @@ server {
|
||||
{# As of Ubuntu 16.04 and Debian 9, the PHP-FPM configs are the same #}
|
||||
{% if (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')) or (ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '==')) %}
|
||||
fastcgi_pass unix:/run/php/php7.0-fpm-{{ domain_name }}.sock;
|
||||
{% elif ansible_distribution == 'Ubuntu' and ansible_distribution_version | version_compare('18.04', '==') %}
|
||||
{% elif ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==') %}
|
||||
fastcgi_pass unix:/run/php/php7.2-fpm-{{ domain_name }}.sock;
|
||||
{% else %}
|
||||
fastcgi_pass unix:/var/run/php5-fpm-{{ domain_name }}.sock;
|
||||
|
Reference in New Issue
Block a user