1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

BUG#27367 mysql.server should be LSB init script compliant

support-files/mysql.server.sh:
  BUG#27367 Add force-reload and status options. Change usage message to reflect
  Replaced a shell call to cat with shell builtin read
This commit is contained in:
unknown
2007-03-21 20:46:24 -07:00
parent 971124a7f5
commit 60ffd7e346
3 changed files with 103 additions and 7 deletions

View File

@@ -359,20 +359,43 @@ case "$mode" in
fi
;;
'reload')
'reload'|'force-reload')
if test -s "$server_pid_file" ; then
mysqld_pid=`cat $server_pid_file`
read mysqld_pid < $server_pid_file
kill -HUP $mysqld_pid && log_success_msg "Reloading service MySQL"
touch $server_pid_file
else
log_failure_msg "MySQL PID file could not be found!"
exit 1
fi
;;
*)
# usage
echo "Usage: $0 {start|stop|restart|reload} [ MySQL server options ]"
exit 1
'status')
# First, check to see if pid file exists
if [ -s "$server_pid_file" ] ; then
read mysqld_pid < $server_pid_file
if kill -0 $mysqld_pid 2>/dev/null ; then
log_success_msg "MySQL running ($mysqld_pid)"
exit 0
else
log_failure_msg "MySQL is not running, but PID file exists"
exit 1
fi
else
# Try to find appropriate mysqld process
mysqld_pid=`pidof $sbindir/mysqld`
if [ -z $mysqld_pid ] ; then
log_failure_msg "MySQL is not running"
exit 3
else
log_failure_msg "MySQL is running but PID file could not be found"
exit 4
fi
fi
;;
*)
# usage
echo "Usage: $0 {start|stop|restart|reload|force-reload|status} [ MySQL server options ]"
exit 1
;;
esac