diff options
author | lenz@mysql.com <> | 2004-01-15 16:14:30 +0100 |
---|---|---|
committer | lenz@mysql.com <> | 2004-01-15 16:14:30 +0100 |
commit | 5693662fc0f12a7099b0714b837f01f2370eeb3b (patch) | |
tree | edb38c0c436c4beabc65041228db5fcc6728afae /scripts | |
parent | e452d990486b19dd527b29b957b44508a9d4bf8d (diff) | |
download | mariadb-git-5693662fc0f12a7099b0714b837f01f2370eeb3b.tar.gz |
- fixed early removing of socket file when multiple instances of mysqld are
started via mysqld_safe (BUG#2114) Thanks to Rodrigo Marchant for the
suggestion
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_safe.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_safe.sh b/scripts/mysqld_safe.sh index 5d77863c9b4..0f415ccd5f0 100644 --- a/scripts/mysqld_safe.sh +++ b/scripts/mysqld_safe.sh @@ -115,7 +115,6 @@ else ledir=@libexecdir@ fi -safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@}} user=@MYSQLD_USER@ niceness=0 @@ -155,6 +154,7 @@ then fi parse_arguments `$print_defaults --loose-verbose $defaults mysqld_safe safe_mysqld` parse_arguments PICK-ARGS-FROM-ARGV "$@" +safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@}} if test ! -x $ledir/$MYSQLD then |