From 9f4b712f0246e8ba9e206fb6fa6be1219e7a10e3 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 2 May 2023 20:35:28 +0200 Subject: [PATCH] revert disabling FTS if on Nc26 Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index b03164e6..e8c88fae 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -631,12 +631,6 @@ 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 - echo "Fulltextsearch is not compatible with Nextcloud 26 and is getting disabled." -fi - # Fulltextsearch if [ "$FULLTEXTSEARCH_ENABLED" = 'yes' ]; then while ! nc -z "$FULLTEXTSEARCH_HOST" 9200; do