Hello community,
here is the log from the commit of package mysql-community-server for
openSUSE:Factory checked in at 2016-02-05 00:32:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mysql-community-server (Old)
and /work/SRC/openSUSE:Factory/.mysql-community-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mysql-community-server"
Changes:
--------
---
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.changes
2016-01-28 17:25:57.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.changes
2016-02-05 00:32:10.000000000 +0100
@@ -1,0 +2,6 @@
+Tue Feb 2 13:15:46 UTC 2016 - [email protected]
+
+- fix information leak via mysql-systemd-helper script
+ [CVE-2015-5969], [bnc#957174]
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ configuration-tweaks.tar.bz2 ++++++
++++++ mysql-patches.tar.bz2 ++++++
++++++ mysql-systemd-helper ++++++
--- /var/tmp/diff_new_pack.6xJHiC/_old 2016-02-05 00:32:12.000000000 +0100
+++ /var/tmp/diff_new_pack.6xJHiC/_new 2016-02-05 00:32:12.000000000 +0100
@@ -22,9 +22,11 @@
if [[ -n "$INSTANCE" && "x$INSTANCE" != "xdefault" ]]; then
opts="$(/usr/bin/my_print_defaults mysqld mysqld_multi
"$INSTANCE")"
tmp_opts="$opts"
+ config="/etc/my${INSTANCE}.cnf"
else
opts="$(/usr/bin/my_print_defaults mysqld)"
tmp_opts="$opts"
+ config="/etc/my.cnf"
fi
# Update local variables according to the settings from config
@@ -87,8 +89,8 @@
# Run protected MySQL accessible only though socket in our
directory
echo "Running protected MySQL... "
/usr/sbin/mysqld \
+ --defaults-file="$config" \
--user="$mysql_daemon_user" \
- $opts \
--skip-networking \
--skip-grant-tables \
--log-error="$protected/log_upgrade_run" \
@@ -144,7 +146,9 @@
}
mysql_start() {
- exec /usr/sbin/mysqld --user="$mysql_daemon_user" $opts
+ exec /usr/sbin/mysqld \
+ --defaults-file="$config" \
+ --user="$mysql_daemon_user"
}
# We rely on output in english at some points