19 lines
458 B
YAML
19 lines
458 B
YAML
|
---
|
||
|
- name: Ensure PHP configuration directories exist.
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
mode: 0755
|
||
|
follow: true
|
||
|
with_items: "{{ php_extension_conf_paths }}"
|
||
|
|
||
|
- name: Copy XHProf INI into various other conf folders.
|
||
|
template:
|
||
|
src: xhprof.ini.j2
|
||
|
dest: "{{ item }}/{{ php_xhprof_config_filename }}"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
with_items: "{{ php_extension_conf_paths }}"
|
||
|
notify: restart webserver
|