13 lines
318 B
YAML
13 lines
318 B
YAML
|
|
---
|
||
|
|
- name: Redémarrer php-fpm
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: "{{ serveur_icingaweb2_php_fpm_service }}"
|
||
|
|
state: restarted
|
||
|
|
when: not ansible_check_mode
|
||
|
|
|
||
|
|
- name: Recharger nginx
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: "{{ serveur_icingaweb2_nginx_service }}"
|
||
|
|
state: reloaded
|
||
|
|
when: not ansible_check_mode
|