From ced30efb935315a3ac323a526671010d6a50f1d7 Mon Sep 17 00:00:00 2001 From: Filip Janus Date: Tue, 30 Jul 2024 15:05:10 +0200 Subject: [PATCH] Remove /var/run/postgresql Resolves: RHEL-25756 --- postgresql.spec | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/postgresql.spec b/postgresql.spec index 8aa8dad..9f0205d 100644 --- a/postgresql.spec +++ b/postgresql.spec @@ -63,7 +63,7 @@ Summary: PostgreSQL client programs Name: postgresql %global majorversion 13 Version: %{majorversion}.14 -Release: 1%{?dist} +Release: 2%{?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. @@ -705,10 +705,6 @@ install -d $RPM_BUILD_ROOT/etc/pam.d install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/pam.d/postgresql %endif -# Create the directory for sockets. -install -d -m 755 $RPM_BUILD_ROOT%{?_localstatedir}/run/postgresql - -# ... and make a tmpfiles script to recreate it at reboot. mkdir -p $RPM_BUILD_ROOT%{_tmpfilesdir} install -m 0644 %{SOURCE9} $RPM_BUILD_ROOT%{_tmpfilesdir}/postgresql.conf @@ -1118,7 +1114,7 @@ make -C postgresql-setup-%{setup_version} check %attr(644,postgres,postgres) %config(noreplace) %{?_localstatedir}/lib/pgsql/.bash_profile %attr(700,postgres,postgres) %dir %{?_localstatedir}/lib/pgsql/backups %attr(700,postgres,postgres) %dir %{?_localstatedir}/lib/pgsql/data -%attr(755,postgres,postgres) %dir %{?_localstatedir}/run/postgresql +%ghost %attr(755,postgres,postgres) %dir %{?_rundir}/postgresql %if %pam %config(noreplace) /etc/pam.d/postgresql %endif @@ -1219,6 +1215,10 @@ make -C postgresql-setup-%{setup_version} check %changelog +* Tue Jul 30 2024 Filip Janus - 13.14-2 +- Remove /var/run/postgresql +- Related: RHEL-25756 + * Fri Feb 9 2024 Filip Janus - 13.14-1 - Update to 13.14 - Fix CVE-2024-0985