Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
5ac1f353
Commit
5ac1f353
authored
Mar 18, 2009
by
Chad MILLER
Browse files
Options
Browse Files
Download
Plain Diff
Merge fix for 39326 and bugteam tree.
parents
c216de6e
e7ed4306
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
15 deletions
+33
-15
scripts/mysqld_safe.sh
scripts/mysqld_safe.sh
+33
-15
No files found.
scripts/mysqld_safe.sh
View file @
5ac1f353
...
@@ -18,7 +18,7 @@ niceness=0
...
@@ -18,7 +18,7 @@ niceness=0
logging
=
init
logging
=
init
want_syslog
=
0
want_syslog
=
0
syslog_tag
=
syslog_tag
=
user
=
@MYSQLD_USER@
user
=
'@MYSQLD_USER@'
pid_file
=
pid_file
=
err_log
=
err_log
=
...
@@ -64,9 +64,10 @@ my_which ()
...
@@ -64,9 +64,10 @@ my_which ()
{
{
save_ifs
=
"
${
IFS
-UNSET
}
"
save_ifs
=
"
${
IFS
-UNSET
}
"
IFS
=
:
IFS
=
:
ret
=
0
for
file
for
file
do
do
for
dir
in
$PATH
for
dir
in
"
$PATH
"
do
do
if
[
-f
"
$dir
/
$file
"
]
if
[
-f
"
$dir
/
$file
"
]
then
then
...
@@ -74,15 +75,18 @@ my_which ()
...
@@ -74,15 +75,18 @@ my_which ()
continue
2
continue
2
fi
fi
done
done
return
1
# Failure, didn't find file in path
ret
=
1
#signal an error
break
done
done
if
[
"
$save_ifs
"
=
UNSET
]
if
[
"
$save_ifs
"
=
UNSET
]
then
then
unset
IFS
unset
IFS
else
else
IFS
=
"
$save_ifs
"
IFS
=
"
$save_ifs
"
fi
fi
return
0
# Success
return
$ret
# Success
}
}
log_generic
()
{
log_generic
()
{
...
@@ -212,19 +216,30 @@ fi
...
@@ -212,19 +216,30 @@ fi
MY_PWD
=
`
pwd
`
MY_PWD
=
`
pwd
`
# Check for the directories we would expect from a binary release install
# Check for the directories we would expect from a binary release install
if
test
-
f
"
$relpkgdata
"
/english/errmsg.sys
-a
-x
./bin/mysqld
if
test
-
n
"
$MY_BASEDIR_VERSION
"
-a
-d
"
$MY_BASEDIR_VERSION
"
then
then
MY_BASEDIR_VERSION
=
$MY_PWD
# Where bin, share and data are
# BASEDIR is already overridden on command line. Do not re-set.
ledir
=
$MY_BASEDIR_VERSION
/bin
# Where mysqld is
# Use BASEDIR to discover le.
if
test
-x
"
$MY_BASEDIR_VERSION
/libexec/mysqld"
then
ledir
=
"
$MY_BASEDIR_VERSION
/libexec"
else
ledir
=
"
$MY_BASEDIR_VERSION
/bin"
fi
elif
test
-f
"
$relpkgdata
"
/english/errmsg.sys
-a
-x
"
$MY_PWD
/bin/mysqld"
then
MY_BASEDIR_VERSION
=
"
$MY_PWD
"
# Where bin, share and data are
ledir
=
"
$MY_PWD
/bin"
# Where mysqld is
# Check for the directories we would expect from a source install
# Check for the directories we would expect from a source install
elif
test
-f
"
$relpkgdata
"
/english/errmsg.sys
-a
-x
./libexec/mysqld
elif
test
-f
"
$relpkgdata
"
/english/errmsg.sys
-a
-x
"
$MY_PWD
/libexec/mysqld"
then
then
MY_BASEDIR_VERSION
=
$MY_PWD
# Where libexec, share and var are
MY_BASEDIR_VERSION
=
"
$MY_PWD
"
# Where libexec, share and var are
ledir
=
$MY_BASEDIR_VERSION
/libexec
# Where mysqld is
ledir
=
"
$MY_PWD
/libexec"
# Where mysqld is
# Since we didn't find anything, used the compiled-in defaults
# Since we didn't find anything, used the compiled-in defaults
else
else
MY_BASEDIR_VERSION
=
@prefix@
MY_BASEDIR_VERSION
=
'@prefix@'
ledir
=
@libexecdir@
ledir
=
'@libexecdir@'
fi
fi
...
@@ -274,7 +289,10 @@ export MYSQL_HOME
...
@@ -274,7 +289,10 @@ export MYSQL_HOME
# Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
# Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
# and then merge with the command line arguments
# and then merge with the command line arguments
if
test
-x
./bin/my_print_defaults
if
test
-x
"
$MY_BASEDIR_VERSION
/bin/my_print_defaults"
then
print_defaults
=
"
$MY_BASEDIR_VERSION
/bin/my_print_defaults"
elif
test
-x
./bin/my_print_defaults
then
then
print_defaults
=
"./bin/my_print_defaults"
print_defaults
=
"./bin/my_print_defaults"
elif
test
-x
@bindir@/my_print_defaults
elif
test
-x
@bindir@/my_print_defaults
...
@@ -399,7 +417,7 @@ then
...
@@ -399,7 +417,7 @@ then
MYSQLD
=
mysqld
MYSQLD
=
mysqld
fi
fi
if
test
!
-x
$ledir
/
$MYSQLD
if
test
!
-x
"
$ledir
/
$MYSQLD
"
then
then
log_error
"The file
$ledir
/
$MYSQLD
log_error
"The file
$ledir
/
$MYSQLD
does not exist or is not executable. Please cd to the mysql installation
does not exist or is not executable. Please cd to the mysql installation
...
@@ -411,7 +429,7 @@ fi
...
@@ -411,7 +429,7 @@ fi
if
test
-z
"
$pid_file
"
if
test
-z
"
$pid_file
"
then
then
pid_file
=
$DATADIR
/
`
@HOSTNAME@
`
.pid
pid_file
=
"
$DATADIR
/
`
@HOSTNAME@
`
.pid"
else
else
case
"
$pid_file
"
in
case
"
$pid_file
"
in
/
*
)
;;
/
*
)
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment