Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't upgrade FTS #2531

Merged
merged 2 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/fulltextsearch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ if [ "${CURRENTVERSION%%.*}" -ge "25" ]
then
msg_box "Sorry, it's not possible to install FTS anymore since Nextcloud decided to remove support for OpenSearch.
Read more in this issue: https://github.com/nextcloud/fulltextsearch_elasticsearch/issues/271"
exit 1
fi

# Check if Full Text Search is already installed
Expand Down
12 changes: 10 additions & 2 deletions nextcloud_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,16 @@ If you need help, please get support here: https://shop.hanssonit.se/product/pre
fi
fi
# Full Text Search
docker_update_specific 'fts_esror' 'Full Text Search'
docker-compose_update 'fts_os-node' 'Full Text Search' "$OPNSDIR"
if [ "${CURRENTVERSION%%.*}" -ge "25" ]
then
msg_box "Sorry, it's not possible to install or upgrade FTS anymore since Nextcloud decided to remove support for OpenSearchh
Read more in this issue: https://github.com/nextcloud/fulltextsearch_elasticsearch/issues/271

Please consider removing it by issuing the uninstall script: sudo bash $SCRIPTS/menu.sh --> Additional Apps --> FullTextSearch"
else
docker_update_specific 'fts_esror' 'Full Text Search'
docker-compose_update 'fts_os-node' 'Full Text Search' "$OPNSDIR"
fi
# Plex
docker_update_specific 'plex' "Plex Media Server"
# Imaginary
Expand Down