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:
Anders Kaseorg 2022-01-13 16:44:53 -08:00 committed by Tim Abbott
parent bb6dbb6383
commit 1178e015d1
1 changed files with 1 additions and 1 deletions

View File

@ -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():