From 4eaf9d7e5591b49cf1c568b8c5aa9e0920ede7b7 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 13 Jan 2022 16:44:53 -0800 Subject: [PATCH] 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 (cherry picked from commit 1178e015d1b634c09ab84486660c5e531db7a9e1) --- tools/lib/provision.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lib/provision.py b/tools/lib/provision.py index cd1cd10122..c7f9c9e9e7 100755 --- a/tools/lib/provision.py +++ b/tools/lib/provision.py @@ -205,7 +205,7 @@ elif "debian" in os_families(): SYSTEM_DEPENDENCIES = [ *DEBIAN_DEPENDECIES, f"postgresql-{POSTGRESQL_VERSION}", - f"postgresql-{POSTGRESQL_VERSION}-pgdg-pgroonga", + f"postgresql-{POSTGRESQL_VERSION}-pgroonga", *VENV_DEPENDENCIES, ] elif "rhel" in os_families():