mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
17 lines
361 B
YAML
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
|