File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
- name : enabling opcache cli
3
- lineinfile : dest=/etc/php/7.0/cli/php.ini
4
- regexp=';?opcache.enable=\d'
5
- line='opcache.enable=1'
3
+ lineinfile :
4
+ dest : /etc/php/7.0/cli/php.ini
5
+ regexp : ' ;?opcache.enable=\d'
6
+ line : ' opcache.enable=1'
6
7
7
8
- name : ensure timezone is set in cli php.ini
8
- lineinfile : dest=/etc/php/7.0/cli/php.ini
9
- regexp='date.timezone ='
10
- line='date.timezone = {{ server.timezone }}'
9
+ lineinfile :
10
+ dest : /etc/php/7.0/cli/php.ini
11
+ regexp : ' date.timezone ='
12
+ line : ' date.timezone = {{ server.timezone }}'
Original file line number Diff line number Diff line change 8
8
when : vagrant_local.vm.hostname is defined
9
9
10
10
- name : Update /etc/hosts
11
- lineinfile : dest=/etc/hosts regexp='^127\.0\.0\.1' line='127.0.0.1 localhost {{ vagrant_local.vm.hostname }}' owner=root group=root mode=0644
11
+ lineinfile :
12
+ dest : /etc/hosts
13
+ regexp : ' ^127\.0\.0\.1'
14
+ line : ' 127.0.0.1 localhost {{ vagrant_local.vm.hostname }}'
15
+ owner : root
16
+ group : root
17
+ mode : 0644
You can’t perform that action at this time.
0 commit comments