mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
6547960e28
--- Removed reference to debian svn location of debian dir. Changed verbage of comment to appease Timothy. --- Removed added manpages that aren't appropriate for our build. --- Added debian dir to list of dist targets. Added list of files needed to be distributed in debian dir. --- Added semi-colons to fix syntax error. --- BUG#27769 MySQL should include debian packaing dir Added debian/Makefile to configure.in to support make dist.
85 lines
2 KiB
Bash
85 lines
2 KiB
Bash
#!/bin/bash
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: mysql-ndb
|
|
# Required-Start: $syslog mysql mysql-ndb-mgm
|
|
# Required-Stop: $syslog mysql mysql-ndb-mgm
|
|
# Should-Start: $local_fs $remote_fs $network $named $time
|
|
# Should-Stop: $local_fs $remote_fs $network $named $time
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: Start and stop the mysql database cluster server daemon
|
|
# Description: Controls the MySQL NDB Data Node daemon "ndbd".
|
|
### END INIT INFO
|
|
#
|
|
set -e
|
|
set -u
|
|
${DEBIAN_SCRIPT_DEBUG:+ set -v -x}
|
|
|
|
# Variables
|
|
SELF=$(cd $(dirname $0); pwd -P)/$(basename $0)
|
|
DAEMON=/usr/sbin/ndbd
|
|
CONF=/etc/mysql/my.cnf
|
|
export HOME=/etc/mysql/
|
|
|
|
# Safeguard (relative paths, core dumps..)
|
|
cd /
|
|
umask 077
|
|
|
|
# Exit *silently* if we're not supposed to be started.
|
|
#
|
|
# The Debian scripts should execute these scripts to stop and start
|
|
# the daemon when upgrading if it is started. On the other hand it should
|
|
# remain silently if the server has not even been configured.
|
|
# See /usr/share/doc/mysql-server-*/README.Debian for more information.
|
|
test -x $DAEMON || exit 0
|
|
if $DAEMON --help | grep -q '^ndb-connectstring.*No default value'; then exit 0; fi
|
|
. /lib/lsb/init-functions
|
|
|
|
#
|
|
# main()
|
|
#
|
|
case "${1:-''}" in
|
|
'start')
|
|
# Start daemon
|
|
# Creatign a PID file does not work as the master process forks
|
|
# a child with different PID and then terminates itself.
|
|
log_daemon_msg "Starting MySQL NDB Data Node" "ndbd"
|
|
if start-stop-daemon \
|
|
--start \
|
|
--exec $DAEMON \
|
|
--user mysql
|
|
then
|
|
log_end_msg 0
|
|
else
|
|
log_end_msg 1
|
|
log_warning_msg "Please take a look at the syslog."
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
'stop')
|
|
log_daemon_msg "Stopping MySQL NDB Data Node" "ndbd"
|
|
if start-stop-daemon \
|
|
--stop \
|
|
--oknodo \
|
|
--exec $DAEMON
|
|
then
|
|
log_end_msg 0
|
|
else
|
|
log_end_msg 1
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
'restart'|'force-reload')
|
|
set +e; $SELF stop; set -e
|
|
$SELF start
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $SELF start|stop|restart|force-reload"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|