Ansible-Roles/roles/php-fpm/tasks/configure-apcu.yml
2026-05-08 22:25:29 +03:00

38 lines
1.1 KiB
YAML

---
- name: Check for existing APCu config files.
ansible.builtin.find:
paths: "{{ item }}"
contains: 'extension(\s+)?=(\s+)?apc[u]?\.so'
register: php_installed_apc_confs
with_items: "{{ php_extension_conf_paths }}"
- name: Remove any non-role-supplied APCu config files.
ansible.builtin.file:
path: "{{ item.1.path }}"
state: absent
when: php_apc_conf_filename != (item.1.path.split('/') | last)
with_subelements:
- "{{ php_installed_apc_confs.results }}"
- files
notify: Restart webserver
- name: Ensure APCu config file is present.
ansible.builtin.template:
src: apc.ini.j2
dest: "{{ item }}/{{ php_apc_conf_filename }}"
owner: root
group: root
force: true
mode: '0644'
with_items: "{{ php_extension_conf_paths }}"
when: php_enable_apc
notify: Restart webserver
- name: Remove APCu config file if APC is disabled.
ansible.builtin.file:
path: "{{ item }}/{{ php_apc_conf_filename }}"
state: absent
with_items: "{{ php_extension_conf_paths }}"
when: not php_enable_apc
notify: Restart webserver