feat: add file_lock and notify_push configuration to nextcloud role
Signed-off-by: Bert-Jan Fikse <bert-jan@whatwedo.ch>
This commit is contained in:
parent
910986b808
commit
d517f77b6c
4 changed files with 55 additions and 2 deletions
|
|
@ -74,6 +74,10 @@
|
|||
ansible.builtin.include_tasks: drawio.yml
|
||||
when: nextcloud_enable_drawio
|
||||
|
||||
- name: Configure notify_push
|
||||
ansible.builtin.include_tasks: notify_push.yml
|
||||
when: nextcloud_enable_notify_push
|
||||
|
||||
- name: Configure LDAP backend
|
||||
ansible.builtin.include_tasks: ldap.yml
|
||||
when: nextcloud_ldap_enabled
|
||||
|
|
|
|||
8
roles/nextcloud/tasks/notify_push.yml
Normal file
8
roles/nextcloud/tasks/notify_push.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# tasks file for configuring notify_push in Nextcloud
|
||||
|
||||
- name: Configure notify_push base endpoint
|
||||
community.docker.docker_container_exec:
|
||||
container: "{{ nextcloud_docker_compose_dir | basename }}-nextcloud-1"
|
||||
command: php /var/www/html/occ notify_push:setup https://{{ nextcloud_domain }}/push
|
||||
Loading…
Add table
Add a link
Reference in a new issue