Use new syntax for Jinj2 filters that are used as tests
Ansible 2.5.0 uses a new syntax for Jinja2 filters that are used as tests. See: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.5.html
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
# dependencies certbot checks for on its first run
|
||||
# taken from running certbot right after a clean Ubuntu 16.04 install
|
||||
- name: Install certbot dependencies (Ubuntu 16.04)
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version | version_compare('16.04', '==')
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')
|
||||
apt: name={{ item }} state=present update_cache=yes
|
||||
with_items:
|
||||
- augeas-doc
|
||||
@ -60,7 +60,7 @@
|
||||
# dependencies certbot checks for on its first run
|
||||
# taken from running certbot right after a clean Debian 9 install
|
||||
- name: Install certbot dependencies (Debian 9)
|
||||
when: ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '==')
|
||||
when: ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '==')
|
||||
apt: name={{ item }} state=present update_cache=yes
|
||||
with_items:
|
||||
- augeas-doc
|
||||
|
@ -64,7 +64,7 @@ server {
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
|
||||
{# As of Ubuntu 16.04 and Debian 9, the PHP-FPM configs are the same #}
|
||||
{% if (ansible_distribution == 'Ubuntu' and ansible_distribution_version | version_compare('16.04', '==')) or (ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '==')) %}
|
||||
{% if (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')) or (ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '==')) %}
|
||||
fastcgi_pass unix:/run/php/php7.0-fpm-{{ domain_name }}.sock;
|
||||
{% else %}
|
||||
fastcgi_pass unix:/var/run/php5-fpm-{{ domain_name }}.sock;
|
||||
|
Reference in New Issue
Block a user