mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-14 10:25:24 +01:00
Use |bool filter on opcache variable to avoid deprecation warning
This commit is contained in:
parent
903e595c4b
commit
1f4b20ba7d
@ -25,7 +25,7 @@
|
||||
force: true
|
||||
mode: 0644
|
||||
with_items: "{{ php_extension_conf_paths }}"
|
||||
when: php_opcache_enable
|
||||
when: php_opcache_enable|bool
|
||||
notify: restart webserver
|
||||
|
||||
- name: Remove OpCache config file if OpCache is disabled.
|
||||
@ -33,5 +33,5 @@
|
||||
path: "{{ item }}/{{ php_opcache_conf_filename }}"
|
||||
state: absent
|
||||
with_items: "{{ php_extension_conf_paths }}"
|
||||
when: not php_opcache_enable
|
||||
when: not php_opcache_enable|bool
|
||||
notify: restart webserver
|
||||
|
@ -23,5 +23,5 @@
|
||||
path: "{{ item }}/{{ php_opcache_conf_filename }}"
|
||||
state: absent
|
||||
with_items: "{{ php_extension_conf_paths }}"
|
||||
when: php_opcache_enable and php_package_install.changed
|
||||
when: php_opcache_enable|bool and php_package_install.changed
|
||||
notify: restart webserver
|
||||
|
Loading…
Reference in New Issue
Block a user