diff --git a/SOURCES/1001-Fixed-postgresql-service-network-binding-issue-durin.patch b/SOURCES/1001-Fixed-postgresql-service-network-binding-issue-durin.patch deleted file mode 100644 index e796674..0000000 --- a/SOURCES/1001-Fixed-postgresql-service-network-binding-issue-durin.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 9720199bccbfaff831618d778ebfd0e5f076991a Mon Sep 17 00:00:00 2001 -From: sagar sagar -Date: Tue, 30 May 2023 16:50:24 +0530 -Subject: [PATCH] Fixed postgresql service network binding issue during bootup - -During the bootup, the postgresql service requires port bind to network -address to assign configured in /var/lib/pgsql/data/postgresql.conf but the -service is not able to do if the network service has not yet assigned an IP -address to the network interface. -By using "network-online.target" parameter in -/usr/lib/systemd/system/postgresql.service we are postponing the postgresql -service to run until we have not got the IP address assinged. - -For more info :- -https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/ -Orabug: 35420628 - -Signed-off-by: sagar sagar ---- - postgresql-setup-8.6/postgresql.service.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/postgresql-setup-8.6/postgresql.service.in b/postgresql-setup-8.6/postgresql.service.in -index c73c42a..893e6fa 100644 ---- a/postgresql-setup-8.6/postgresql.service.in -+++ b/postgresql-setup-8.6/postgresql.service.in -@@ -6,7 +6,7 @@ - - [Unit] - Description=PostgreSQL database server --After=network.target -+After=network-online.target - - [Service] - Type=notify --- -2.39.3 - diff --git a/SPECS/postgresql.spec b/SPECS/postgresql.spec index c2965bd..ec24d65 100644 --- a/SPECS/postgresql.spec +++ b/SPECS/postgresql.spec @@ -63,7 +63,7 @@ Summary: PostgreSQL client programs Name: postgresql %global majorversion 13 Version: %{majorversion}.11 -Release: 1.0.1%{?dist} +Release: 1%{?dist} # The PostgreSQL license is very similar to other MIT licenses, but the OSI # recognizes it as an independent license, so we do as well. @@ -113,9 +113,6 @@ Patch9: postgresql-server-pg_config.patch Patch12: postgresql-no-libecpg.patch Patch14: postgresql-pgcrypto-openssl3-tests.patch -#Oracle Patch -Patch1001: 1001-Fixed-postgresql-service-network-binding-issue-durin.patch - BuildRequires: make BuildRequires: gcc BuildRequires: perl(ExtUtils::MakeMaker) glibc-devel bison flex gawk @@ -430,7 +427,6 @@ goal of accelerating analytics queries. %endif %patch9 -p1 %patch14 -p1 -%patch1001 -p1 # We used to run autoconf here, but there's no longer any real need to, # since Postgres ships with a reasonably modern configure script. @@ -1223,9 +1219,6 @@ make -C postgresql-setup-%{setup_version} check %changelog -* Wed Jun 21 2023 EL Errata - 13.11-1.0.1 -- Fixed postgresql port binding issue during bootup [Orabug: 35420628] - * Fri May 19 2023 Jorge San Emeterio - 13.11-1 - Update to 13.11 - Resolves: #2207935