Skip to content
Snippets Groups Projects
Commit f48cee4f authored by jurgenhaas's avatar jurgenhaas
Browse files

#3 Disable opcache as there is always a second one there

parent 0d4eda49
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,13 @@
- include: php.yml
when: role_php_completed is not defined
- name: "Disable OpCache for CLI and FPM, they are there twice"
command: 'phpdismod -s {{ item }} opcache'
with_items:
- 'cli'
- 'fpm'
when: php_version|default("5.5") == "7"
- name: 'PHP | Remember that this role had been run'
set_fact: role_php_completed=true
tags: always
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment