mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
afc37e723e
Regarding to the changes to rc.subr(8) it is no longer necessary to define a resource limiting logic in service scripts. limits(1) is now run by default and its configuration is handled via the "${name}_limits" variable. This however causes collision of variable names and also is not compatible with the old mechanism. This fixes the rc-script of mysql57 for the bases with both old and new mechanism. (This is port of the r466505 [and r466506]) PR: 227230 Submitted by: 0mp Reported by: 0mp Differential Revision: Netzkommune GmbH
93 lines
2.6 KiB
Bash
93 lines
2.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mysql
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable mysql:
|
|
# mysql_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable MySQL.
|
|
%%LEGACY_LIMITS%%# mysql_limits (bool): Set to "NO" by default.
|
|
%%LEGACY_LIMITS%%# Set it to yes to run `limits -e -U mysql`
|
|
%%LEGACY_LIMITS%%# just before mysql starts.
|
|
# mysql_dbdir (str): Default to "%%MY_DBDIR%%"
|
|
# Base database directory.
|
|
# mysql_confdir (str): Default to "%%ETCDIR%%"
|
|
# Base configuration directory.
|
|
# mysql_optfile (str): Server-specific option file.
|
|
# Set it in the rc.conf or default behaviour of
|
|
# `mysqld_safe` itself, will be picking
|
|
# ${mysql_confdir}/my.cnf if it exists.
|
|
# mysql_pidfile (str): Custum PID file path and name.
|
|
# Default to "${mysql_dbdir}/${hostname}.pid".
|
|
# mysql_args (str): Custom additional arguments to be passed
|
|
# to mysqld_safe (default empty).
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mysql"
|
|
rcvar=mysql_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${mysql_enable="NO"}
|
|
%%LEGACY_LIMITS%%: ${mysql_limits="NO"}
|
|
: ${mysql_dbdir="%%MY_DBDIR%%"}
|
|
: ${mysql_confdir="%%ETCDIR%%"}
|
|
if [ -f "${mysql_confdir}/my.cnf" ]; then
|
|
: ${mysql_optfile="${mysql_confdir}/my.cnf"}
|
|
elif [ -f "${mysql_dbdir}/my.cnf" ]; then
|
|
: ${mysql_optfile="${mysql_dbdir}/my.cnf"}
|
|
fi
|
|
if [ ! -z "${mysql_optfile}" ]; then
|
|
mysql_extra="--defaults-extra-file=${mysql_optfile}"
|
|
fi
|
|
|
|
|
|
mysql_user="mysql"
|
|
%%LEGACY_LIMITS%%mysql_limits_args="-e -U ${mysql_user}"
|
|
: ${hostname:=`/bin/hostname`}
|
|
pidfile=${mysql_pidfile:-"${mysql_dbdir}/${hostname}.pid"}
|
|
command="/usr/sbin/daemon"
|
|
command_args="-c -f %%PREFIX%%/bin/mysqld_safe ${mysql_extra} --basedir=%%PREFIX%% --datadir=${mysql_dbdir} --pid-file=${pidfile} --user=${mysql_user} ${mysql_args} %%FEDER%% %%PERFSCHEMRC%%"
|
|
procname="%%PREFIX%%/libexec/mysqld"
|
|
start_precmd="${name}_prestart"
|
|
start_postcmd="${name}_poststart"
|
|
mysql_install_db="%%PREFIX%%/bin/mysql_install_db"
|
|
mysql_install_db_args="${mysql_extra} --basedir=%%PREFIX%% --datadir=${mysql_dbdir} --mysqld-file=${procname} --user=${mysql_user}"
|
|
|
|
mysql_create_auth_tables()
|
|
{
|
|
eval $mysql_install_db $mysql_install_db_args >/dev/null 2>/dev/null
|
|
}
|
|
|
|
mysql_prestart()
|
|
{
|
|
if [ ! -d "${mysql_dbdir}/mysql/." ]; then
|
|
mysql_create_auth_tables || return 1
|
|
fi
|
|
%%LEGACY_LIMITS%% if checkyesno mysql_limits; then
|
|
%%LEGACY_LIMITS%% eval `/usr/bin/limits ${mysql_limits_args}` 2>/dev/null
|
|
%%LEGACY_LIMITS%% else
|
|
%%LEGACY_LIMITS%% return 0
|
|
%%LEGACY_LIMITS%% fi
|
|
%%MODERN_LIMITS%% return 0
|
|
}
|
|
|
|
mysql_poststart()
|
|
{
|
|
local timeout=15
|
|
while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do
|
|
timeout=$(( timeout - 1 ))
|
|
sleep 1
|
|
done
|
|
return 0
|
|
}
|
|
|
|
run_rc_command "$1"
|