[Pkg-mysql-commits] r2202 - mysql-5.5/branches/unstable/debian

Clint Byrum spamaps-guest at alioth.debian.org
Tue Nov 27 14:10:27 UTC 2012


tags 692871 pending
thanks

Author: spamaps-guest
Date: 2012-11-27 14:10:27 +0000 (Tue, 27 Nov 2012)
New Revision: 2202

Modified:
   mysql-5.5/branches/unstable/debian/changelog
   mysql-5.5/branches/unstable/debian/mysql-server-5.5.postinst
Log:
d/mysql-server-5.5.postinst: Patch from Alex Bligh to fix privilege
regression that was introduced in the switch from 5.1 to 5.5.
(Closes: #692871)

Modified: mysql-5.5/branches/unstable/debian/changelog
===================================================================
--- mysql-5.5/branches/unstable/debian/changelog	2012-11-16 08:09:49 UTC (rev 2201)
+++ mysql-5.5/branches/unstable/debian/changelog	2012-11-27 14:10:27 UTC (rev 2202)
@@ -1,3 +1,11 @@
+mysql-5.5 (5.5.28+dfsg-2) UNRELEASED; urgency=low
+
+  * d/mysql-server-5.5.postinst: Patch from Alex Bligh to fix privilege
+    regression that was introduced in the switch from 5.1 to 5.5.
+    (Closes: #692871)
+
+ -- Clint Byrum <clint at ubuntu.com>  Tue, 27 Nov 2012 06:07:25 -0800
+
 mysql-5.5 (5.5.28+dfsg-1) unstable; urgency=low
 
   * New upstream release (resolves CVE-2012-3163, CVE-2012-3158, CVE-2012-3177,

Modified: mysql-5.5/branches/unstable/debian/mysql-server-5.5.postinst
===================================================================
--- mysql-5.5/branches/unstable/debian/mysql-server-5.5.postinst	2012-11-16 08:09:49 UTC (rev 2201)
+++ mysql-5.5/branches/unstable/debian/mysql-server-5.5.postinst	2012-11-27 14:10:27 UTC (rev 2202)
@@ -206,7 +206,7 @@
         "  Create_tmp_table_priv='Y', Lock_tables_priv='Y', Execute_priv='Y', "\
         "  Repl_slave_priv='Y', Repl_client_priv='Y', Create_view_priv='Y', "\
         "  Show_view_priv='Y', Create_routine_priv='Y', Alter_routine_priv='Y', "\
-        "  Create_user_priv='Y', Event_priv='Y', Trigger_priv='Y' "`;
+        "  Create_user_priv='Y', Event_priv='Y', Trigger_priv='Y', Create_tablespace_priv='Y' "`;
     fix_privs=`echo -e \
         "USE mysql;\n" \
         "ALTER TABLE user ADD column Create_view_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
@@ -215,7 +215,8 @@
         "ALTER TABLE user ADD column Alter_routine_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
         "ALTER TABLE user ADD column Create_user_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
         "ALTER TABLE user ADD column Event_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
-        "ALTER TABLE user ADD column Trigger_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " `
+        "ALTER TABLE user ADD column Trigger_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
+        "ALTER TABLE user ADD column Create_tablespace_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " `
     # Engines supported by etch should be installed per default. The query sequence is supposed
     # to be aborted if the CREATE TABLE fails due to an already existent table in which case the
     # admin might already have chosen to remove one or more plugins. Newlines are necessary.




More information about the Pkg-mysql-commits mailing list