summaryrefslogtreecommitdiff
path: root/support-files/mysql.server.sh
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-11-22 18:37:00 +0100
committerunknown <lenz@mysql.com>2002-11-22 18:37:00 +0100
commitdbccc041b6e5137bb8218976e8993e4de3cf45e7 (patch)
tree48ebc0d276e54b99e75b2ee27253fecd8fbfceda /support-files/mysql.server.sh
parentfa76afe6edbc6572f179d1dcf859f013e85ef7dd (diff)
downloadmariadb-git-dbccc041b6e5137bb8218976e8993e4de3cf45e7.tar.gz
mysql.server:
- fixed some typos and wording (merged from 3.23 tree) - fixed parsing the correct section in /etc/my.cnf ([mysql_server] -> [mysql.server]) as documented in the manual support-files/mysql.server.sh: - fixed some typos and wording (merged from 3.23 tree) - fixed parsing the correct section in /etc/my.cnf ([mysql_server] -> [mysql.server]) as documented in the manual
Diffstat (limited to 'support-files/mysql.server.sh')
-rw-r--r--support-files/mysql.server.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh
index 139bbb3fd6b..0a9463ac095 100644
--- a/support-files/mysql.server.sh
+++ b/support-files/mysql.server.sh
@@ -2,7 +2,7 @@
# Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
# This file is public domain and comes with NO WARRANTY of any kind
-# Mysql daemon start/stop script.
+# MySQL daemon start/stop script.
# Usually this is put in /etc/init.d (at least on machines SYSV R4 based
# systems) and linked to /etc/rc3.d/S99mysql and /etc/rc0.d/K01mysql.
@@ -20,17 +20,17 @@
# Required-Stop: $local_fs $network $remote_fs
# Default-Start: 3 5
# Default-Stop: 3 5
-# Short-Description: start and stop MySLQ
+# Short-Description: start and stop MySQL
# Description: MySQL is a very fast and reliable SQL database engine.
### END INIT INFO
# If you install MySQL on some other places than @prefix@, then you
-# have to do one of the following thing for this script to work:
+# have to do one of the following things for this script to work:
#
-# - Run this script from the MySQL installation directory
+# - Run this script from within the MySQL installation directory
# - Create a /etc/my.cnf file with the following information:
# [mysqld]
-# basedir=path-to-mysql-installation-directory
+# basedir=<path-to-mysql-installation-directory>
# - Add the above to any other configuration file (for example ~/.my.ini)
# and copy my_print_defaults to /usr/bin
# - Add the path to the mysql-installation-directory to the basedir variable
@@ -79,7 +79,7 @@ parse_arguments() {
done
}
-# Get arguments from the my.cnf file, groups [mysqld] and [mysql_server]
+# Get arguments from the my.cnf file, groups [mysqld] and [mysql.server]
if test -x ./bin/my_print_defaults
then
print_defaults="./bin/my_print_defaults"
@@ -117,7 +117,7 @@ else
test -z "$print_defaults" && print_defaults="my_print_defaults"
fi
-parse_arguments `$print_defaults $defaults mysqld mysql_server`
+parse_arguments `$print_defaults $defaults mysqld mysql.server`
# Safeguard (relative paths, core dumps..)
cd $basedir