mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
install: Support PostgreSQL 16.
This commit is contained in:
committed by
Tim Abbott
parent
415fb2014b
commit
1ba2f39854
@@ -32,7 +32,7 @@ Options:
|
||||
Sets the PostgreSQL database name.
|
||||
--postgresql-database-user=zulip
|
||||
Sets the PostgreSQL database user.
|
||||
--postgresql-version=15
|
||||
--postgresql-version=16
|
||||
Sets the version of PostgreSQL that will be installed.
|
||||
--postgresql-missing-dictionaries
|
||||
Set postgresql.missing_dictionaries, which alters the initial database. Use with
|
||||
@@ -152,7 +152,7 @@ read -r -a ADDITIONAL_PACKAGES <<<"${ADDITIONAL_PACKAGES:-}"
|
||||
# e.g. zulip::profile::app_frontend for a Zulip frontend server.
|
||||
PUPPET_CLASSES="${PUPPET_CLASSES:-zulip::profile::standalone}"
|
||||
VIRTUALENV_NEEDED="${VIRTUALENV_NEEDED:-yes}"
|
||||
POSTGRESQL_VERSION="${POSTGRESQL_VERSION:-15}"
|
||||
POSTGRESQL_VERSION="${POSTGRESQL_VERSION:-16}"
|
||||
|
||||
if [ -n "$SELF_SIGNED_CERT" ] && [ -n "$USE_CERTBOT" ]; then
|
||||
set +x
|
||||
|
@@ -12,7 +12,7 @@ export LC_ALL=C.UTF-8
|
||||
export LANG=C.UTF-8
|
||||
export LANGUAGE=C.UTF-8
|
||||
|
||||
LATEST_SUPPORTED_VERSION=15
|
||||
LATEST_SUPPORTED_VERSION=16
|
||||
UPGRADE_TO=${1:-$LATEST_SUPPORTED_VERSION}
|
||||
UPGRADE_FROM=$(crudini --get /etc/zulip/zulip.conf postgresql version)
|
||||
ZULIP_PATH="$(dirname "$0")/../.."
|
||||
|
Reference in New Issue
Block a user