From c82fb0a505dac3a1b4229000c5bb067f20918376 Mon Sep 17 00:00:00 2001 From: Janik von Rotz Date: Mon, 17 Feb 2025 21:18:01 +0100 Subject: [PATCH] feat(nexccloud): update --- roles/nextcloud/README.md | 2 +- roles/nextcloud_apps/README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/nextcloud/README.md b/roles/nextcloud/README.md index 326b257e..b5f9c501 100644 --- a/roles/nextcloud/README.md +++ b/roles/nextcloud/README.md @@ -83,7 +83,7 @@ docker build . -t nextcloud:nextcloud01 When Nextcloud is thowing an *Internal Server Error* without details in the log, run the occ cli to get details on the issue. -``` +```bash docker exec --user www-data nextcloud01 php occ ``` diff --git a/roles/nextcloud_apps/README.md b/roles/nextcloud_apps/README.md index 808d0fa1..8b265a5a 100644 --- a/roles/nextcloud_apps/README.md +++ b/roles/nextcloud_apps/README.md @@ -9,6 +9,8 @@ Configure the role. ```yml nextcloud_hostname: nextcloud01 # default: "/usr/share/{{ odoo_hostname }}" nextcloud_apps: + - name: activity + state: present - name: calendar state: present - name: files_external @@ -22,7 +24,7 @@ nextcloud_apps: And include it in your playbook. ```yml -- hosts: nextclcoud-apps +- hosts: nextclcoud_apps roles: - role: nextcloud_apps ```