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
6606b732
Commit
6606b732
authored
Jul 02, 2009
by
Daniel Fischer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge patch for bug#31785
parent
42e0f151
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
support-files/mysql.server.sh
support-files/mysql.server.sh
+12
-5
No files found.
support-files/mysql.server.sh
View file @
6606b732
...
...
@@ -358,11 +358,18 @@ case "$mode" in
if
test
-s
"
$pid_file
"
then
mysqlmanager_pid
=
`
cat
$pid_file
`
echo
$echo_n
"Shutting down MySQL"
kill
$mysqlmanager_pid
# mysqlmanager should remove the pid_file when it exits, so wait for it.
wait_for_pid removed
"
$mysqlmanager_pid
"
;
return_value
=
$?
if
(
kill
-0
$mysqlmanager_pid
2>/dev/null
)
then
echo
$echo_n
"Shutting down MySQL"
kill
$mysqlmanager_pid
# mysqlmanager should remove the pid_file when it exits, so wait for it.
wait_for_pid removed
"
$mysqlmanager_pid
"
;
return_value
=
$?
else
log_failure_msg
"MySQL manager or server process #
$mysqlmanager_pid
is not running!"
rm
$pid_file
fi
# delete lock for RedHat / SuSE
if
test
-f
$lock_dir
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