From: Ben Shum Date: Mon, 5 Nov 2018 21:33:53 +0000 (-0500) Subject: LP#1793585: Fix PostgreSQL apt repo source setup X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e8f4486f2b1f5abe3d374bcd9932c4d89aabc552;p=evergreen%2Fpines.git LP#1793585: Fix PostgreSQL apt repo source setup For standalone DB server install, ensure that we are applying the proper PostgreSQL community apt repo for packages. DO NOT backport this branch. There are presently known issues with Ubuntu 18.04 and email generation from action/trigger and other interfaces. We plan to address these before the 3.3 release, but do not necessarily expect to backport those fixes. Signed-off-by: Ben Shum Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-bionic b/Open-ILS/src/extras/install/Makefile.ubuntu-bionic index 41c69ec01e..adc3c54c45 100644 --- a/Open-ILS/src/extras/install/Makefile.ubuntu-bionic +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-bionic @@ -99,6 +99,10 @@ export CPAN_MODULES_FORCE = \ export CPAN_MODULES_PGSQL = \ MARC::File::XML +PGSQL_APT_REPO_DEBS = \ + wget \ + ca-certificates + PGSQL_SERVER_DEBS_96 = \ $(DEB_PGSQL_COMMON_MODS) \ postgresql-9.6 \ @@ -144,6 +148,8 @@ all: make -f $(DIR)/Makefile.debian debian_sys_config install_postgres_server: + make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)" + make -f $(DIR)/Makefile.debian debian_postgresql_repo make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_96)" make -f $(DIR)/Makefile.common install_cpan_pgsql