mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-28 12:45:16 +01:00
make apc optional
This commit is contained in:
parent
950049e5bf
commit
3782e76a07
@ -23,14 +23,19 @@
|
||||
notify: restart webserver
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Place PHP configuration files in place.
|
||||
- name: Place PHP configuration file in place.
|
||||
template: >
|
||||
src={{ item.src }}
|
||||
dest={{ item.dest }}
|
||||
src=php.ini.j2
|
||||
dest={{ php_conf_path }}/php.ini
|
||||
owner=root group=root mode=644
|
||||
with_items:
|
||||
- { src: php.ini.j2, dest: "{{ php_conf_path }}/php.ini" }
|
||||
- { src: apc.ini.j2, dest: "{{ php_extension_conf_path }}/{{ php_apc_conf_filename }}" }
|
||||
notify: restart webserver
|
||||
|
||||
- name: Place APC configuration file in place.
|
||||
template: >
|
||||
src=apc.ini.j2
|
||||
dest={{ php_extension_conf_path }}/{{ php_apc_conf_filename }}
|
||||
owner=root group=root mode=644
|
||||
when: php_enable_apc
|
||||
notify: restart webserver
|
||||
|
||||
- name: Ensure php-fpm is started and enabled at boot (if configured).
|
||||
|
Loading…
Reference in New Issue
Block a user