mirror of https://github.com/zulip/zulip.git
provision: Install non-PGDG PGroonga package in development environment.
The development environment installs PostgreSQL from the OS, not PGDG, so we should install the non-PGDG PGroonga package to match. This is required on Debian 10 where postgresql-12-pgdg-pgroonga does not exist. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
bb6dbb6383
commit
1178e015d1
|
@ -199,7 +199,7 @@ elif "debian" in os_families():
|
||||||
SYSTEM_DEPENDENCIES = [
|
SYSTEM_DEPENDENCIES = [
|
||||||
*DEBIAN_DEPENDECIES,
|
*DEBIAN_DEPENDECIES,
|
||||||
f"postgresql-{POSTGRESQL_VERSION}",
|
f"postgresql-{POSTGRESQL_VERSION}",
|
||||||
f"postgresql-{POSTGRESQL_VERSION}-pgdg-pgroonga",
|
f"postgresql-{POSTGRESQL_VERSION}-pgroonga",
|
||||||
*VENV_DEPENDENCIES,
|
*VENV_DEPENDENCIES,
|
||||||
]
|
]
|
||||||
elif "rhel" in os_families():
|
elif "rhel" in os_families():
|
||||||
|
|
Loading…
Reference in New Issue