From 85ba3f7ce791b93eab6828a742d0e21b7c42a360 Mon Sep 17 00:00:00 2001 From: Jonathan Treffler Date: Wed, 31 Jul 2024 16:37:13 +0000 Subject: [PATCH] automatically install groupfolders on gitpod init --- gitpod/nextcloud/after-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gitpod/nextcloud/after-install.sh b/gitpod/nextcloud/after-install.sh index decad5b..38defe1 100644 --- a/gitpod/nextcloud/after-install.sh +++ b/gitpod/nextcloud/after-install.sh @@ -26,6 +26,8 @@ wait_until_finished run_as "php /var/www/html/occ config:system:set debug --value='true' --type=boolean" +run_as "php /var/www/html/occ app:install groupfolders" + run_as "php /var/www/html/occ app:enable groupfolder_tags" run_as "php /var/www/html/occ migrations:migrate groupfolder_tags"