ansible-roles/php/handlers/main.yml

42 lines
776 B
YAML
Raw Permalink Normal View History

2017-02-21 12:03:46 +01:00
---
- name: restart php5-fpm
ansible.builtin.service:
name: php5-fpm
state: restarted
2023-01-31 17:52:55 +01:00
- name: restart php5.6-fpm
ansible.builtin.service:
2023-01-31 17:52:55 +01:00
name: php5.6-fpm
state: restarted
- name: restart php7.0-fpm
ansible.builtin.service:
name: php7.0-fpm
2017-02-21 12:03:46 +01:00
state: restarted
- name: restart php7.3-fpm
ansible.builtin.service:
name: php7.3-fpm
state: restarted
2021-05-01 17:51:50 +02:00
- name: restart php7.4-fpm
ansible.builtin.service:
2021-05-01 17:51:50 +02:00
name: php7.4-fpm
state: restarted
- name: restart php8.1-fpm
ansible.builtin.service:
name: php8.1-fpm
state: restarted
2023-02-13 10:27:49 +01:00
- name: restart php8.2-fpm
ansible.builtin.service:
2023-02-13 10:27:49 +01:00
name: php8.2-fpm
state: restarted
- name: restart php8.3-fpm
ansible.builtin.service:
name: php8.3-fpm
state: restarted