Removes /var/run/postgresql

Resolves: RHEL-51271
This commit is contained in:
Filip Janus 2024-07-30 15:13:04 +02:00
parent d72b854227
commit d87d74f571

View File

@ -63,7 +63,7 @@ Summary: PostgreSQL client programs
Name: postgresql Name: postgresql
%global majorversion 15 %global majorversion 15
Version: %{majorversion}.6 Version: %{majorversion}.6
Release: 2%{?dist} Release: 3%{?dist}
# The PostgreSQL license is very similar to other MIT licenses, but the OSI # The PostgreSQL license is very similar to other MIT licenses, but the OSI
# recognizes it as an independent license, so we do as well. # recognizes it as an independent license, so we do as well.
@ -708,10 +708,6 @@ install -d $RPM_BUILD_ROOT/etc/pam.d
install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/pam.d/postgresql install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/pam.d/postgresql
%endif %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} mkdir -p $RPM_BUILD_ROOT%{_tmpfilesdir}
install -m 0644 %{SOURCE9} $RPM_BUILD_ROOT%{_tmpfilesdir}/postgresql.conf install -m 0644 %{SOURCE9} $RPM_BUILD_ROOT%{_tmpfilesdir}/postgresql.conf
@ -1130,7 +1126,7 @@ make -C postgresql-setup-%{setup_version} check
%attr(644,postgres,postgres) %config(noreplace) %{?_localstatedir}/lib/pgsql/.bash_profile %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/backups
%attr(700,postgres,postgres) %dir %{?_localstatedir}/lib/pgsql/data %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 %if %pam
%config(noreplace) /etc/pam.d/postgresql %config(noreplace) /etc/pam.d/postgresql
%endif %endif
@ -1231,6 +1227,10 @@ make -C postgresql-setup-%{setup_version} check
%changelog %changelog
* Tue Jul 30 2024 Filip Janus <fjanus@redhat.com> - 15.6-3
- Remove /var/run/postgresql
- Related: RHEL-51271
* Mon Jul 15 2024 Filip Janus <fjanus@redhat.com> - 15.6-2 * Mon Jul 15 2024 Filip Janus <fjanus@redhat.com> - 15.6-2
- Enable lz4 and zstd support - Enable lz4 and zstd support