ansible-roles/php/handlers/main.yml
Ludovic Poujol 0a7262081a
All checks were successful
continuous-integration/drone/push Build is passing
php: add missing handler for php7.3-fpm
2019-10-16 15:17:35 +02:00

17 lines
243 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