13 lines
303 B
YAML
13 lines
303 B
YAML
|
|
---
|
||
|
|
- name: Recharger nginx nextcloud
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: nginx
|
||
|
|
state: reloaded
|
||
|
|
when: not ansible_check_mode
|
||
|
|
|
||
|
|
- name: Recharger php-fpm nextcloud
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: "php{{ serveur_nextcloud_php_version }}-fpm"
|
||
|
|
state: restarted
|
||
|
|
when: not ansible_check_mode
|