ansible-roles/php/handlers/main.yml

42 lines
776 B
YAML

---
- name: restart php5-fpm
ansible.builtin.service:
name: php5-fpm
state: restarted
- name: restart php5.6-fpm
ansible.builtin.service:
name: php5.6-fpm
state: restarted
- name: restart php7.0-fpm
ansible.builtin.service:
name: php7.0-fpm
state: restarted
- name: restart php7.3-fpm
ansible.builtin.service:
name: php7.3-fpm
state: restarted
- name: restart php7.4-fpm
ansible.builtin.service:
name: php7.4-fpm
state: restarted
- name: restart php8.1-fpm
ansible.builtin.service:
name: php8.1-fpm
state: restarted
- name: restart php8.2-fpm
ansible.builtin.service:
name: php8.2-fpm
state: restarted
- name: restart php8.3-fpm
ansible.builtin.service:
name: php8.3-fpm
state: restarted