cloud-environments-example/roles/nextcloud/handlers/main.yml
2023-08-20 11:13:16 +02:00

23 lines
440 B
YAML
Executable File

---
- name: restart redis
systemd:
name: redis
state: restarted
- name: setup notify_push
command:
chdir: "{{ ncloud_dir }}"
cmd: "php occ notify_push:setup https://{{ ncloud_domain[0] }}/push"
become: yes
become_user: "{{ www_group }}"
- name: restart notify_push
systemd:
name: notify_push
state: restarted
daemon_reload: yes
- name: restart coturn
systemd:
name: coturn
state: restarted