PR #280: Follow-up for formatting.

This commit is contained in:
Jeff Geerling 2019-11-06 12:43:07 -06:00
parent 47acf30a1f
commit 24ca4a9c36
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
force: true
mode: 0644
with_items: "{{ php_extension_conf_paths }}"
when: php_opcache_enable|bool
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|bool
when: not php_opcache_enable | bool
notify: restart webserver

View File

@ -23,5 +23,5 @@
path: "{{ item }}/{{ php_opcache_conf_filename }}"
state: absent
with_items: "{{ php_extension_conf_paths }}"
when: php_opcache_enable|bool and php_package_install.changed
when: php_opcache_enable | bool and php_package_install.changed
notify: restart webserver