mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
Use ansible jinja filter of version_compare
This commit is contained in:
parent
e22b35d20e
commit
6a2048a565
@ -53,7 +53,7 @@
|
||||
- name: Disable opcache if PHP version is < 5.5.
|
||||
set_fact:
|
||||
php_opcache_enable: 0
|
||||
when: "php_version.stdout.split('.')[0] == '5' and php_version.stdout.split('.')[1] < '5'"
|
||||
when: "{{ php_version.stdout | version_compare('5.5', operator='lt') }}"
|
||||
|
||||
# Configure PHP.
|
||||
- include: configure.yml
|
||||
|
Loading…
Reference in New Issue
Block a user