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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
103d87ce
Commit
103d87ce
authored
Jul 24, 2001
by
tim@white.box
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleanup in safe_mysqld.
Fix --core-file-size so that the argument is parsed correctly.
parent
2b6776d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
24 deletions
+19
-24
scripts/safe_mysqld.sh
scripts/safe_mysqld.sh
+19
-24
No files found.
scripts/safe_mysqld.sh
View file @
103d87ce
...
...
@@ -23,37 +23,32 @@ parse_arguments() {
# We only need to pass arguments through to the server if we don't
# handle them here. So, we collect unrecognized options (passed on
# the command line) into the args variable.
pick_args
=
if
test
"
$1
"
=
PICK-ARGS-FROM-ARGV
then
pick_args
=
1
shift
fi
pick_args
=
$1
;
shift
for
arg
do
case
"
$arg
"
in
# these get passed explicitly to mysqld
--basedir
=
*
)
MY_BASEDIR_VERSION
=
`
echo
"
$arg
"
|
sed
-e
"s;--
basedir
=;;"
`
;;
--datadir
=
*
)
DATADIR
=
`
echo
"
$arg
"
|
sed
-e
"s;--
datadir
=;;"
`
;;
--pid-file
=
*
)
pid_file
=
`
echo
"
$arg
"
|
sed
-e
"s;--
pid-file
=;;"
`
;;
--user
=
*
)
user
=
`
echo
"
$arg
"
|
sed
-e
"s;--
user
=;;"
`
;;
--basedir
=
*
)
MY_BASEDIR_VERSION
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--datadir
=
*
)
DATADIR
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--pid-file
=
*
)
pid_file
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--user
=
*
)
user
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
# these two might have been set in a [safe_mysqld] section of my.cnf
# they get passed via environment variables to safe_mysqld
--socket
=
*
)
MYSQL_UNIX_PORT
=
`
echo
"
$arg
"
|
sed
-e
"s;--
socket
=;;"
`
;;
--port
=
*
)
MYSQL_TCP_PORT
=
`
echo
"
$arg
"
|
sed
-e
"s;--
port
=;;"
`
;;
--socket
=
*
)
MYSQL_UNIX_PORT
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--port
=
*
)
MYSQL_TCP_PORT
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
# safe_mysqld-specific options
- must be set in my.cnf ([safe_mysqld])!
--ledir
=
*
)
ledir
=
`
echo
"
$arg
"
|
sed
-e
"s;--
ledir
=;;"
`
;;
--err-log
=
*
)
err_log
=
`
echo
"
$arg
"
|
sed
-e
"s;--
err-log
=;;"
`
;;
# safe_mysqld-specific options
--ledir
=
*
)
ledir
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--err-log
=
*
)
err_log
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
# QQ The --open-files should be removed
--open-files
=
*
)
open_files
=
`
echo
"
$arg
"
|
sed
-e
"s;--
open-files
=;;"
`
;;
--open-files-limit
=
*
)
open_files
=
`
echo
"
$arg
"
|
sed
-e
"s;--
open-files-limit
=;;"
`
;;
--core-file-size
=
*
)
core_file_size
=
`
echo
"
$arg
"
|
sed
-e
"s;--
core_file_size
=;;"
`
;;
--timezone
=
*
)
TZ
=
`
echo
"
$arg
"
|
sed
-e
"s;--
timezone
=;;"
`
;
export
TZ
;
;;
--mysqld
=
*
)
MYSQLD
=
`
echo
"
$arg
"
|
sed
-e
"s;--
mysqld
=;;"
`
;;
--open-files
=
*
)
open_files
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--open-files-limit
=
*
)
open_files
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--core-file-size
=
*
)
core_file_size
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--timezone
=
*
)
TZ
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;
export
TZ
;
;;
--mysqld
=
*
)
MYSQLD
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
;;
--mysqld-version
=
*
)
tmp
=
`
echo
"
$arg
"
|
sed
-e
"s;--
mysqld-version
=;;"
`
tmp
=
`
echo
"
$arg
"
|
sed
-e
"s;--
[^=]*
=;;"
`
if
test
-n
"
$tmp
"
then
MYSQLD
=
"mysqld-
$tmp
"
...
...
@@ -62,7 +57,7 @@ parse_arguments() {
fi
;;
*
)
if
test
-n
"
$pick_args
"
if
test
$pick_args
-eq
1
then
# This sed command makes sure that any special chars are quoted,
# so the arg gets passed exactly to the server.
...
...
@@ -130,8 +125,8 @@ else
fi
args
=
parse_arguments
`
$print_defaults
$defaults
mysqld server safe_mysqld
`
parse_arguments
PICK-ARGS-FROM-ARGV
"
$@
"
parse_arguments
0
`
$print_defaults
$defaults
mysqld server safe_mysqld
`
parse_arguments
1
"
$@
"
if
test
!
-x
$ledir
/
$MYSQLD
then
...
...
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