diff --git a/entrypoint.sh b/entrypoint.sh index 9af05eb1c2..bf7f69b35b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -160,6 +160,11 @@ puppetConfiguration() { echo "Disabling https in nginx." crudini --set /etc/zulip/zulip.conf application_server http_only true fi + if [ "$POSTGRESQL_MISSING_DICTIONARIES" == "True" ] || [ "$POSTGRESQL_MISSING_DICTIONARIES" == "true" ]; then + echo "Setting zulip not to expect tsearch-extras in its target Postgres." + crudini --set /etc/zulip/zulip.conf postgresql missing_dictionaries true + fi + if [ "$QUEUE_WORKERS_MULTIPROCESS" == "True" ] || [ "$QUEUE_WORKERS_MULTIPROCESS" == "true" ]; then if [ "$QUEUE_WORKERS_MULTIPROCESS" == "True" ]; then echo "Setting queue workers to run in multiprocess mode ..." crudini --set /etc/zulip/zulip.conf application_server queue_workers_multiprocess true