diff --git a/postgresql.changes b/postgresql.changes index db78566..e73bd23 100644 --- a/postgresql.changes +++ b/postgresql.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 13 15:52:30 UTC 2024 - Reinhard Max + +- Bump major to 17 for SLE. + ------------------------------------------------------------------- Thu Sep 19 11:30:29 UTC 2024 - Reinhard Max @@ -11,6 +16,12 @@ Thu Sep 12 08:28:00 UTC 2024 - Reinhard Max Lane confirmed on the PostgreSQL packagers list that ABI stability is being taken care of between minor releases. +------------------------------------------------------------------- +Tue Feb 27 15:28:14 UTC 2024 - Reinhard Max + +- bsc#1219340: The last fix was not correct. Improve it by removing + the dependency again and call fillup only if it is installed. + ------------------------------------------------------------------- Thu Feb 8 12:09:14 UTC 2024 - Reinhard Max diff --git a/postgresql.spec b/postgresql.spec index 9732f8d..93a1d3a 100644 --- a/postgresql.spec +++ b/postgresql.spec @@ -131,7 +131,6 @@ BuildRequires: pkgconfig(systemd) %{?systemd_ordering} %else Requires(postun): %insserv_prereq -Requires(pre): %fillup_prereq %endif @@ -413,7 +412,9 @@ fi %endif %post server -%fillup_only -n postgresql +if [ -x /bin/fillup ]; then + %fillup_only -n postgresql +fi %if %{with systemd} if test -x /usr/bin/systemctl; then PROFILE="/var/lib/pgsql/.bash_profile"