diff --git a/tasks/configure-opcache.yml b/tasks/configure-opcache.yml index 8b01a08..fc043d0 100644 --- a/tasks/configure-opcache.yml +++ b/tasks/configure-opcache.yml @@ -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 diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index 5ff1bbe..bd7607d 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -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