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:
parent
d1ba60e15d
commit
632aa1cf14
@ -1,4 +1,4 @@
|
||||
{% 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://pkg.tarsnap.com/deb/artful ./
|
||||
{% else %}
|
||||
|
@ -1,7 +1,7 @@
|
||||
# {{ ansible_managed }}
|
||||
{% if ansible_distribution == 'Ubuntu' %}
|
||||
|
||||
{% 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 [arch=amd64,i386] http://mariadb.mirror.serveriai.lt/repo/10.2/ubuntu artful main
|
||||
{% else %}
|
||||
|
@ -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;
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
- name: Configure php-fpm on Ubuntu 18.04
|
||||
include_tasks: Ubuntu_18.04.yml
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version | version_compare('18.04', '==')
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==')
|
||||
tags: php-fpm
|
||||
|
||||
# vim: set ts=2 sw=2:
|
||||
|
Loading…
Reference in New Issue
Block a user