ansible-collection-nextcloud/roles/nextcloud/handlers/main.yml

17 lines
306 B
YAML
Raw Normal View History

2023-02-07 20:48:16 +01:00
---
- name: restart php-fpm
ansible.builtin.service:
name: "php{{ php_version}}-fpm.service"
state: restarted
- name: restart apache2
ansible.builtin.service:
name: apache2
state: restarted
- name: restart redis
ansible.builtin.service:
name: redis-server
state: restarted