Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package php8 for openSUSE:Factory checked in at 2022-12-01 16:58:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php8 (Old)
and /work/SRC/openSUSE:Factory/.php8.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "php8"
Thu Dec 1 16:58:15 2022 rev:36 rq:1039061 version:8.1.13
Changes:
--------
--- /work/SRC/openSUSE:Factory/php8/php8.changes 2022-11-25 14:08:13.673219267 +0100
+++ /work/SRC/openSUSE:Factory/.php8.new.1835/php8.changes 2022-12-01 16:58:16.238846474 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 08:25:35 UTC 2022 - pgajdos(a)suse.com
+
+- amend %preun to fix [bsc#1205782]
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ php8.spec ++++++
--- /var/tmp/diff_new_pack.DEN8VS/_old 2022-12-01 16:58:17.722854619 +0100
+++ /var/tmp/diff_new_pack.DEN8VS/_new 2022-12-01 16:58:17.726854641 +0100
@@ -1306,13 +1306,13 @@
%post
if [ $1 -eq 1 ]; then
# package is just installed
- a2enmod -q %{php_name} || a2enmod %{php_name}
+ a2enmod %{php_name} > /dev/null
fi
%preun
if [ $1 -eq 0 ]; then
# package will be uninstalled
- a2enmod -q %{php_name} && a2enmod -d %{php_name}
+ a2enmod -d %{php_name} > /dev/null
fi
%postun