1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

General spell fixing in comments and strings

This commit is contained in:
Otto Kekäläinen
2016-06-08 14:14:42 +03:00
parent 9de6708390
commit effbe7dd7b
67 changed files with 96 additions and 96 deletions

View File

@ -47,8 +47,8 @@ basedir=
datadir=
# Default value, in seconds, afterwhich the script should timeout waiting
# for server start.
# Value here is overriden by value in my.cnf.
# for server start.
# Value here is overridden by value in my.cnf.
# 0 means don't wait at all
# Negative numbers mean to wait indefinitely
service_startup_timeout=900
@ -379,9 +379,9 @@ case "$mode" in
;;
'status')
# First, check to see if pid file exists
if test -s "$mysqld_pid_file_path" ; then
if test -s "$mysqld_pid_file_path" ; then
read mysqld_pid < "$mysqld_pid_file_path"
if kill -0 $mysqld_pid 2>/dev/null ; then
if kill -0 $mysqld_pid 2>/dev/null ; then
log_success_msg "MySQL running ($mysqld_pid)"
exit 0
else
@ -397,11 +397,11 @@ case "$mode" in
if test $pid_count -gt 1 ; then
log_failure_msg "Multiple MySQL running but PID file could not be found ($mysqld_pid)"
exit 5
elif test -z $mysqld_pid ; then
if test -f "$lock_file_path" ; then
elif test -z $mysqld_pid ; then
if test -f "$lock_file_path" ; then
log_failure_msg "MySQL is not running, but lock file ($lock_file_path) exists"
exit 2
fi
fi
log_failure_msg "MySQL is not running"
exit 3
else