Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mariadb for openSUSE:Factory checked in at 2026-02-01 22:01:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mariadb (Old) and /work/SRC/openSUSE:Factory/.mariadb.new.1995 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mariadb" Sun Feb 1 22:01:54 2026 rev:159 rq:1330061 version:11.8.5 Changes: -------- --- /work/SRC/openSUSE:Factory/mariadb/mariadb.changes 2026-01-07 16:01:06.122336416 +0100 +++ /work/SRC/openSUSE:Factory/.mariadb.new.1995/mariadb.changes 2026-02-01 22:02:35.393408955 +0100 @@ -1,0 +2,5 @@ +Thu Jan 29 16:39:57 UTC 2026 - Robert Frohl <[email protected]> + +- Fix incomplete SELinux labels during database update (bsc#1255024) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mysql-systemd-helper ++++++ --- /var/tmp/diff_new_pack.WpW2sY/_old 2026-02-01 22:02:36.925472878 +0100 +++ /var/tmp/diff_new_pack.WpW2sY/_new 2026-02-01 22:02:36.929473045 +0100 @@ -117,8 +117,14 @@ # Run upgrade itself echo "Running upgrade itself..." - echo "It will do some chek first and report all errors and tries to correct them" + echo "It will do some check first and report all errors and tries to correct them" echo + # Needed to fix wrongly labled $datadir, breaking database updates with SELinux + # this is a quick interim fix and can be removed once the directories are label + # correctly during package install. + if which selinuxenabled > /dev/null && selinuxenabled; then + restorecon -R "$datadir/" + fi if /usr/bin/mysql_upgrade --force --socket="$protected/mysql.sock"; then echo "Everything upgraded successfully" up_ok=""
