From 7476ffd7f0620820d97598b76b129e82b2e72fd6 Mon Sep 17 00:00:00 2001 From: "lenz@mysql.com" <> Date: Mon, 10 Mar 2003 20:21:11 +0100 Subject: [PATCH 1/2] - added missing file mysql_secure_installation to server RPM subpackage (bug #141) (please merge with 4.1 and onwards) --- support-files/mysql.spec.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 34f4a919395..500b308e686 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -446,6 +446,7 @@ fi %attr(755, root, root) /usr/bin/mysql_explain_log %attr(755, root, root) /usr/bin/mysql_fix_privilege_tables %attr(755, root, root) /usr/bin/mysql_install_db +%attr(755, root, root) /usr/bin/mysql_secure_installation %attr(755, root, root) /usr/bin/mysql_setpermission %attr(755, root, root) /usr/bin/mysql_zap %attr(755, root, root) /usr/bin/mysqlbug @@ -535,6 +536,11 @@ fi %changelog +* Mon Mar 10 2003 Lenz Grimmer + +- added missing file mysql_secure_installation to server subpackage + (bug #141) + * Tue Feb 11 2003 Lenz Grimmer - re-added missing pre- and post(un)install scripts to server subpackage From 82e01d483de3207aa5d81d09d752678e72cbf753 Mon Sep 17 00:00:00 2001 From: "walrus@mysql.com" <> Date: Tue, 11 Mar 2003 02:32:24 +0500 Subject: [PATCH 2/2] crash-me.sh: misprint correction --- sql-bench/crash-me.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-bench/crash-me.sh b/sql-bench/crash-me.sh index aeca7aa311b..82c8a3a90e4 100644 --- a/sql-bench/crash-me.sh +++ b/sql-bench/crash-me.sh @@ -3161,7 +3161,7 @@ sub safe_connect sub retry_connect { my ($dbh, $i); - for (i=0 ; $i < 10 ; $i++) + for ($i=0 ; $i < 10 ; $i++) { if (($dbh=DBI->connect($server->{'data_source'},$opt_user,$opt_password, { PrintError => 0, AutoCommit => 1})))