25 lines
508 B
YAML
25 lines
508 B
YAML
- name: "Restart Nextcloud App"
|
|
ansible.builtin.service:
|
|
name: nextcloud-ngx
|
|
state: restarted
|
|
|
|
- name: "Restart Nextcloud Redis"
|
|
systemd_service:
|
|
name: nextcloud-redis
|
|
state: restarted
|
|
|
|
- name: "Restart Nextcloud Cron"
|
|
systemd_service:
|
|
name: nextcloud-cron
|
|
state: restarted
|
|
|
|
- name: "Restart Nextcloud Web"
|
|
systemd_service:
|
|
name: nextcloud-web
|
|
state: restarted
|
|
|
|
- name: "Restart Nextcloud Postgres"
|
|
systemd_service:
|
|
name: nextcloud-postgres
|
|
state: restarted
|