mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
12 lines
320 B
YAML
Executable File
12 lines
320 B
YAML
Executable File
---
|
|
- name: enabling opcache cli
|
|
lineinfile:
|
|
dest: /etc/php/7.0/cli/php.ini
|
|
regexp: ';?opcache.enable=\d'
|
|
line: 'opcache.enable=1'
|
|
|
|
- name: ensure timezone is set in cli php.ini
|
|
lineinfile:
|
|
dest: /etc/php/7.0/cli/php.ini
|
|
regexp: 'date.timezone ='
|
|
line: 'date.timezone = {{ server.timezone }}' |