ansible-roles/php/handlers/main.yml
Jérémy Lecour 1728eaee68
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
Revert "Add “when: not ansible_check_mode” to allow more --check"
This reverts commit fafff25c20.
This reverts commit e64471c5a8084f95a8e6f955d3fa918c55b8e846.
2022-12-14 07:41:18 +01:00

27 lines
405 B
YAML

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