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
632aa1cf14
commit
1a870db3af
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Install php-fpm and deps
|
- name: Install php-fpm and deps
|
||||||
apt: name={{ item }} state=present update_cache=yes
|
apt: name={{ item }} state=present update_cache=yes
|
||||||
with_items:
|
loop:
|
||||||
- php-fpm
|
- php-fpm
|
||||||
# for WordPress
|
# for WordPress
|
||||||
- php-mysql
|
- php-mysql
|
||||||
@ -15,7 +15,7 @@
|
|||||||
# only copy php-fpm config for vhosts that need WordPress or PHP
|
# only copy php-fpm config for vhosts that need WordPress or PHP
|
||||||
- name: Copy php-fpm pool config
|
- name: Copy php-fpm pool config
|
||||||
template: src=php7.2-pool.conf.j2 dest=/etc/php/7.2/fpm/pool.d/{{ item.domain_name }}.conf owner=root group=root mode=0644
|
template: src=php7.2-pool.conf.j2 dest=/etc/php/7.2/fpm/pool.d/{{ item.domain_name }}.conf owner=root group=root mode=0644
|
||||||
with_items: "{{ nginx_vhosts }}"
|
loop: "{{ nginx_vhosts }}"
|
||||||
when: (item.has_wordpress is defined and item.has_wordpress == True) or (item.needs_php is defined and item.needs_php == True)
|
when: (item.has_wordpress is defined and item.has_wordpress == True) or (item.needs_php is defined and item.needs_php == True)
|
||||||
notify: reload php7.2-fpm
|
notify: reload php7.2-fpm
|
||||||
tags: php-fpm
|
tags: php-fpm
|
||||||
|
Loading…
Reference in New Issue
Block a user