620968a43a
Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
137 lines
4.2 KiB
Bash
137 lines
4.2 KiB
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: mysql
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable mysql:
|
|
# mysql_(instance_)?enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable MySQL.
|
|
# mysql_(instance_)?dbdir (str): Default to "%%MARIADB_DBDIR%%"
|
|
# Base database directory.
|
|
# mysql_(instance_)?args (str): Custom additional arguments to be passed
|
|
# to mysqld_safe (default empty).
|
|
# mysql_(instance_)?pidfile (str): Custum PID file path and name.
|
|
# Default to "${mysql_dbdir}/${hostname}.pid".
|
|
# mysql_(instance_)?user (str): User to run mysqld as
|
|
# Default to "%%MARIADB_USER%%" created by the port
|
|
# mysql_(instance_)?optfile (str): Server-specific option file.
|
|
# Default to "${mysql_dbdir}/my.cnf".
|
|
# mysql_(instance)?rundir (str): Default to "%%MARIADB_RUNDIR%%"
|
|
# mysql_instances (str): Set to "" by default.
|
|
# If defined, list of instances to enable
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mysql"
|
|
rcvar=mysql_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${mysql_enable="NO"}
|
|
: ${mysql_user="%%MARIADB_USER%%"}
|
|
: ${mysql_dbdir="%%MARIADB_DBDIR%%"}
|
|
: ${mysql_optfile="%%ETCDIR%%/my.cnf"}
|
|
: ${mysql_rundir="%%MARIADB_RUNDIR%%"}
|
|
|
|
command="/usr/sbin/daemon"
|
|
procname="%%PREFIX%%/libexec/mariadbd"
|
|
start_precmd="${name}_prestart"
|
|
start_postcmd="${name}_poststart"
|
|
|
|
if [ -n "$2" ]; then
|
|
instance="$2"
|
|
load_rc_config ${name}_${instance}
|
|
case "$mysql_instances" in
|
|
"$2 "*|*" $2 "*|*" $2"|"$2")
|
|
eval mysql_args="\${mysql_${instance}_args:-\"${mysql_args}\"}"
|
|
eval mysql_dbdir="\${mysql_${instance}_dbdir:-\"%%MARIADB_DBDIR%%_${instance}\"}"
|
|
eval mysql_user="\${mysql_${instance}_user:-\"${mysql_user}\"}"
|
|
eval mysql_socket="\${mysql_${instance}_socket:-\"%%MARIADB_RUNDIR%%_${instance}/%%MARIADB_SOCK%%\"}"
|
|
eval mysql_optfile="\${mysql_${instance}_optfile:-\"%%ETCDIR%%_${instance}/my.cnf\"}"
|
|
eval mysql_pidfile="\${mysql_${instance}_pidfile:-\"%%MARIADB_RUNDIR%%_${instance}/mysqld.pid\"}"
|
|
;;
|
|
*)
|
|
err 1 "$2 not found in mysql_instances" ;;
|
|
esac
|
|
else
|
|
if [ -n "${mysql_instances}" -a -n "$1" ]; then
|
|
for instance in ${mysql_instances}; do
|
|
eval _enable="\${mysql_${instance}_enable}"
|
|
case "${_enable:-${mysql_enable}}" in
|
|
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
|
|
continue
|
|
;;
|
|
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
|
|
;;
|
|
*)
|
|
if [ -z "$_enable" ]; then
|
|
_var=mysql_enable
|
|
else
|
|
_var=mysql_${instance}_enable
|
|
fi
|
|
warn "Bad value" \
|
|
"'${_enable:-${mysql_enable}}'" \
|
|
"for ${_var}. " \
|
|
"Instance ${instance} skipped."
|
|
continue
|
|
;;
|
|
esac
|
|
echo "===> mysql instance: ${instance}"
|
|
if %%PREFIX%%/etc/rc.d/mysql-server $1 ${instance}; then
|
|
success="${instance} ${success}"
|
|
else
|
|
failed="${instance} (${retcode}) ${failed}"
|
|
fi
|
|
done
|
|
exit 0
|
|
else
|
|
mysql_pidfile=${mysql_pidfile:-"%%MARIADB_RUNDIR%%/mysqld.pid"}
|
|
fi
|
|
fi
|
|
|
|
pidfile=$mysql_pidfile
|
|
mysql_install_db="%%PREFIX%%/bin/mariadb-install-db"
|
|
mysql_install_db_args="--basedir=%%PREFIX%% --datadir=${mysql_dbdir} --force"
|
|
command_args="-c -f %%PREFIX%%/bin/mariadbd-safe --defaults-extra-file=${mysql_optfile} --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_socket:+--socket=${mysql_socket}} ${mysql_args}"
|
|
|
|
mysql_create_auth_tables()
|
|
{
|
|
eval $mysql_install_db $mysql_install_db_args
|
|
[ $? -eq 0 ] && chown -R ${mysql_user}:$(id -gn $mysql_user) ${mysql_dbdir}
|
|
}
|
|
|
|
mysql_prestart()
|
|
{
|
|
local dir
|
|
for dir in /etc /usr/local/etc /etc/mysql /var/db/mysql; do
|
|
if [ -f "${dir}/my.cnf" ]; then
|
|
echo "Please merge existing ${dir}/my.cnf file with %%ETCDIR%%/conf.d/server.cnf"
|
|
return 1
|
|
fi
|
|
done
|
|
if [ ! -d "${mysql_dbdir}/mysql/." ]; then
|
|
mysql_create_auth_tables || return 1
|
|
fi
|
|
mysql_group="`/usr/bin/id -gn ${mysql_user}`"
|
|
[ "${mysql_socket}" = "" ] && mysql_rundir="%%MARIADB_RUNDIR%%" || mysql_rundir="`/usr/bin/dirname ${mysql_socket}`"
|
|
if [ ! -d "${mysql_rundir}" ]; then
|
|
install -d -o ${mysql_user} -g ${mysql_group} "${mysql_rundir}"
|
|
fi
|
|
return 0
|
|
if [ ! -d "${mysql_rundir}" ]; then
|
|
install -d -u${mysql_user} -g$(id -gn $mysql_user) -m755 ${mysql_rundir}
|
|
fi
|
|
}
|
|
|
|
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"
|