From 28b9755a50816d007dc9ca738799a32f20d2a011 Mon Sep 17 00:00:00 2001 From: Simon L Date: Fri, 14 Apr 2023 13:41:02 +0200 Subject: [PATCH] disabling FTS on NC26 as the migration to ES8 is still pending Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index 2efc872a..89076eb5 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -616,6 +616,11 @@ if version_greater "$installed_version" "24.0.0.0"; then fi fi +# Migration to ES8 is pending, thus disabling FTS for now. +if [ "$INSTALL_LATEST_MAJOR" = yes ] || version_greater "$installed_version" "26.0.0.0"; then + export FULLTEXTSEARCH_ENABLED=no +fi + # Fulltextsearch if [ "$FULLTEXTSEARCH_ENABLED" = 'yes' ]; then while ! nc -z "$FULLTEXTSEARCH_HOST" 9200; do