From 5107f1ab50a02c81eff36f59e8b492c9de88e9d6 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 4 Aug 2005 11:57:30 +0200 Subject: [PATCH 1/2] - fixed enabling the Archive storage engine for the mysqld-max RPM binary support-files/mysql.spec.sh: - fixed enabling the Archive storage engine for the mysqld-max binary --- support-files/mysql.spec.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 3c58e642a1d..81fed07079f 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -300,7 +300,7 @@ BuildMySQL "--enable-shared \ --with-innodb \ --with-ndbcluster \ --with-raid \ - --with-archive \ + --with-archive-storage-engine \ --with-csv-storage-engine \ --with-example-storage-engine \ --with-blackhole-storage-engine \ @@ -668,6 +668,10 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Thu Aug 04 2005 Lenz Grimmer + +- Fixed enabling the Archive storage engine in the Max binary + * Tue Aug 02 2005 Lenz Grimmer - Fixed the Requires: tag for the server RPM (BUG 12233) From 21fefc68cb5b9f48eea90053364d737ec022d70e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 4 Aug 2005 12:22:51 +0200 Subject: [PATCH 2/2] - Fixed the creation of the mysql user group account in the postinstall section of the MySQL-server RPM spec file (BUG#12348) support-files/mysql.spec.sh: - Fixed the creation of the mysql user group account in the postinstall section (BUG#12348) --- support-files/mysql.spec.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index ade774fb4e3..325ebdf2c01 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -371,7 +371,7 @@ fi # Create a MySQL user and group. Do not report any problems if it already # exists. -groupadd -r -c "MySQL server" %{mysqld_user} 2> /dev/null || true +groupadd -r %{mysqld_user} 2> /dev/null || true useradd -M -r -d $mysql_datadir -s /bin/bash -c "MySQL server" -g %{mysqld_user} %{mysqld_user} 2> /dev/null || true # Change permissions so that the user that will run the MySQL daemon @@ -562,6 +562,11 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Thu Aug 04 2005 Lenz Grimmer + +- Fixed the creation of the mysql user group account in the postinstall + section (BUG 12348) + * Fri Jul 15 2005 Lenz Grimmer - create a "mysql" user group and assign the mysql user account to that group