Ansible-Roles/roles/php-fpm/handlers/main.yml
2026-05-08 22:12:36 +03:00

17 lines
361 B
YAML

---
- name: restart webserver
service:
name: "{{ php_webserver_daemon }}"
state: restarted
notify: restart php-fpm
when: php_enable_webserver
- name: restart php-fpm
service:
name: "{{ php_fpm_daemon }}"
state: "{{ php_fpm_handler_state }}"
when:
- php_enable_php_fpm
- php_fpm_state == 'started'
- not ansible_check_mode