diff options
author | mtaylor@qualinost.(none) <> | 2007-01-26 12:00:38 -0800 |
---|---|---|
committer | mtaylor@qualinost.(none) <> | 2007-01-26 12:00:38 -0800 |
commit | 58ae89cb766520e8c048bca3710a2398b7fcbd4e (patch) | |
tree | 8b65ed30d7c6a4ec6754275ab3f3ec7a90976758 /scripts/mysqld_multi.sh | |
parent | b3f2b36ac0898a390e5a3586420e114d1c918983 (diff) | |
download | mariadb-git-58ae89cb766520e8c048bca3710a2398b7fcbd4e.tar.gz |
User visible change - breaks some environments, per Paul DuBois. Reverting in 4.1 and 5.0.
Diffstat (limited to 'scripts/mysqld_multi.sh')
-rw-r--r-- | scripts/mysqld_multi.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index 48e64a6b541..54662d2c017 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -437,14 +437,6 @@ sub find_groups { $data[$i] = $line; } - if (-f "/etc/mysql/my.cnf" && -r "/etc/mysql/my.cnf") - { - open(MY_CNF, "</etc/mysql/my.cnf") && (@tmp=<MY_CNF>) && close(MY_CNF); - } - for (; ($line = shift @tmp); $i++) - { - $data[$i] = $line; - } if (-f "$homedir/.my.cnf" && -r "$homedir/.my.cnf") { open(MY_CNF, "<$homedir/.my.cnf") && (@tmp=<MY_CNF>) && close(MY_CNF); |