diff options
author | unknown <tsmith/tim@siva.hindu.god> | 2006-12-21 18:18:27 -0700 |
---|---|---|
committer | unknown <tsmith/tim@siva.hindu.god> | 2006-12-21 18:18:27 -0700 |
commit | 454b7d0f52e174b8025f1da889f6014646a57786 (patch) | |
tree | ac746a1b866ec284eeeab01c529579022d826faf /scripts/mysqld_multi.sh | |
parent | 2218cbb059029395314c31efc963dc93562c041d (diff) | |
parent | 8ca9c9288039db167a115cadae1d514ed9ac47e3 (diff) | |
download | mariadb-git-454b7d0f52e174b8025f1da889f6014646a57786.tar.gz |
Merge siva.hindu.god:/usr/home/tim/m/bk/g41
into siva.hindu.god:/usr/home/tim/m/bk/41
scripts/mysqld_multi.sh:
Auto merged
Diffstat (limited to 'scripts/mysqld_multi.sh')
-rw-r--r-- | scripts/mysqld_multi.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index b11dc7394bf..48e64a6b541 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -429,9 +429,9 @@ sub find_groups } else { - if (-f "/etc/my.cnf" && -r "/etc/my.cnf") + if (-f "@sysconfdir@/my.cnf" && -r "@sysconfdir@/my.cnf") { - open(MY_CNF, "</etc/my.cnf") && (@tmp=<MY_CNF>) && close(MY_CNF); + open(MY_CNF, "<@sysconfdir@/my.cnf") && (@tmp=<MY_CNF>) && close(MY_CNF); } for ($i = 0; ($line = shift @tmp); $i++) { @@ -666,7 +666,7 @@ sub example # (as per Linux/Unix standard). You may even replace the # /etc/init.d/mysql.server script with it. # -# Before using, you must create a my.cnf file either in /etc/my.cnf +# Before using, you must create a my.cnf file either in @sysconfdir@/my.cnf # or /root/.my.cnf and add the [mysqld_multi] and [mysqld#] groups. # # The script can be found from support-files/mysqld_multi.server.sh |