Merge pull request #12147 from micmac1/my_up
mariadb: updates for config, auth-pam and init
This commit is contained in:
commit
3224aace8a
7 changed files with 156 additions and 116 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=libmariadb
|
PKG_NAME:=libmariadb
|
||||||
PKG_VERSION:=3.1.7
|
PKG_VERSION:=3.1.7
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=mariadb-connector-c-$(PKG_VERSION)-src.tar.gz
|
PKG_SOURCE:=mariadb-connector-c-$(PKG_VERSION)-src.tar.gz
|
||||||
PKG_SOURCE_URL := \
|
PKG_SOURCE_URL := \
|
||||||
|
@ -160,7 +160,7 @@ define Package/$(PKG_NAME)/install
|
||||||
$(PKG_INSTALL_DIR)$(MARIADB_PLUGIN_DIR)/sha256_password.so \
|
$(PKG_INSTALL_DIR)$(MARIADB_PLUGIN_DIR)/sha256_password.so \
|
||||||
$(1)$(MARIADB_PLUGIN_DIR)
|
$(1)$(MARIADB_PLUGIN_DIR)
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libmariadb.so.$(ABI_VERSION) $(1)/usr/lib
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libmariadb.so.$(ABI_VERSION) $(1)/usr/lib
|
||||||
$(INSTALL_CONF) conf/50-client.cnf $(1)$(MARIADB_CONF_DIR)/conf.d
|
$(INSTALL_DATA) conf/50-client.cnf $(1)$(MARIADB_CONF_DIR)/conf.d
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define BuildPlugin
|
define BuildPlugin
|
||||||
|
|
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=mariadb-common
|
PKG_NAME:=mariadb-common
|
||||||
PKG_VERSION:=1.0
|
PKG_VERSION:=1.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
|
PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
@ -40,7 +40,7 @@ endef
|
||||||
|
|
||||||
define Package/mariadb-common/install
|
define Package/mariadb-common/install
|
||||||
$(INSTALL_DIR) $(1)$(CONF_DIR)
|
$(INSTALL_DIR) $(1)$(CONF_DIR)
|
||||||
$(INSTALL_CONF) conf/my.cnf $(1)$(CONF_DIR)
|
$(INSTALL_DATA) conf/my.cnf $(1)$(CONF_DIR)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
|
|
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=mariadb
|
PKG_NAME:=mariadb
|
||||||
PKG_VERSION:=10.4.12
|
PKG_VERSION:=10.4.12
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL := \
|
PKG_SOURCE_URL := \
|
||||||
|
@ -116,13 +116,13 @@ plugin-wsrep_info := PLUGIN_WSREP_INFO
|
||||||
|
|
||||||
MARIADB_CLIENT := \
|
MARIADB_CLIENT := \
|
||||||
mysql \
|
mysql \
|
||||||
|
mysql_upgrade \
|
||||||
mysqlcheck
|
mysqlcheck
|
||||||
|
|
||||||
MARIADB_CLIENT_EXTRA := \
|
MARIADB_CLIENT_EXTRA := \
|
||||||
mysql_find_rows \
|
mysql_find_rows \
|
||||||
mysql_waitpid \
|
mysql_waitpid \
|
||||||
mysqlaccess \
|
mysqlaccess \
|
||||||
mysqladmin \
|
|
||||||
mysqldump \
|
mysqldump \
|
||||||
mysqlimport \
|
mysqlimport \
|
||||||
mysqlshow \
|
mysqlshow \
|
||||||
|
@ -133,8 +133,9 @@ MARIADB_SERVER := \
|
||||||
innochecksum \
|
innochecksum \
|
||||||
my_print_defaults \
|
my_print_defaults \
|
||||||
mysql_install_db \
|
mysql_install_db \
|
||||||
mysql_upgrade \
|
mysqladmin \
|
||||||
mysqld
|
mysqld \
|
||||||
|
mysqld_safe
|
||||||
|
|
||||||
MARIADB_SERVER_EXTRA := \
|
MARIADB_SERVER_EXTRA := \
|
||||||
aria_chk \
|
aria_chk \
|
||||||
|
@ -156,6 +157,7 @@ MARIADB_SERVER_EXTRA := \
|
||||||
mysql_tzinfo_to_sql \
|
mysql_tzinfo_to_sql \
|
||||||
mysqlbinlog \
|
mysqlbinlog \
|
||||||
mysqld_multi \
|
mysqld_multi \
|
||||||
|
mysqld_safe_helper \
|
||||||
mysqldumpslow \
|
mysqldumpslow \
|
||||||
mysqlhotcopy \
|
mysqlhotcopy \
|
||||||
perror \
|
perror \
|
||||||
|
@ -272,6 +274,10 @@ define Package/mariadb-server
|
||||||
PROVIDES:=mysql-server
|
PROVIDES:=mysql-server
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/mariadb-server/conffiles
|
||||||
|
/usr/bin/mysqld_safe
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/mariadb-server/description
|
define Package/mariadb-server/description
|
||||||
$(call Package/mariadb/description/Default)
|
$(call Package/mariadb/description/Default)
|
||||||
|
|
||||||
|
@ -366,6 +372,7 @@ CMAKE_OPTIONS += \
|
||||||
-DINSTALL_MANDIR=share/man \
|
-DINSTALL_MANDIR=share/man \
|
||||||
-DINSTALL_MYSQLSHAREDIR=share/mariadb \
|
-DINSTALL_MYSQLSHAREDIR=share/mariadb \
|
||||||
-DINSTALL_MYSQLTESTDIR="" \
|
-DINSTALL_MYSQLTESTDIR="" \
|
||||||
|
-DINSTALL_PAMDIR="/lib/security" \
|
||||||
-DINSTALL_PLUGINDIR=lib/mariadb/plugin \
|
-DINSTALL_PLUGINDIR=lib/mariadb/plugin \
|
||||||
-DINSTALL_SBINDIR=bin \
|
-DINSTALL_SBINDIR=bin \
|
||||||
-DINSTALL_SCRIPTDIR=bin \
|
-DINSTALL_SCRIPTDIR=bin \
|
||||||
|
@ -486,7 +493,7 @@ endef
|
||||||
|
|
||||||
define Package/mariadb-client-base/install
|
define Package/mariadb-client-base/install
|
||||||
$(INSTALL_DIR) $(1)$(CONF_DIR)/conf.d
|
$(INSTALL_DIR) $(1)$(CONF_DIR)/conf.d
|
||||||
$(INSTALL_CONF) conf/50-mysql-clients.cnf $(1)$(CONF_DIR)/conf.d
|
$(INSTALL_DATA) conf/50-mysql-clients.cnf $(1)$(CONF_DIR)/conf.d
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/mariadb-client-extra/install
|
define Package/mariadb-client-extra/install
|
||||||
|
@ -507,8 +514,8 @@ define Package/mariadb-server-base/install
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
$(INSTALL_BIN) files/mysqld.init $(1)/etc/init.d/mysqld
|
$(INSTALL_BIN) files/mysqld.init $(1)/etc/init.d/mysqld
|
||||||
$(SED) '/^[a-z]/s/^/#/' $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf
|
$(SED) '/^[a-z]/s/^/#/' $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf
|
||||||
$(INSTALL_CONF) $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf $(1)$(CONF_DIR)/conf.d/60-galera.cnf
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf $(1)$(CONF_DIR)/conf.d/60-galera.cnf
|
||||||
$(INSTALL_CONF) conf/50-server.cnf $(1)$(CONF_DIR)/conf.d
|
$(INSTALL_DATA) conf/50-server.cnf $(1)$(CONF_DIR)/conf.d
|
||||||
$(INSTALL_CONF) files/mysqld.config $(1)/etc/config/mysqld
|
$(INSTALL_CONF) files/mysqld.config $(1)/etc/config/mysqld
|
||||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/charsets/* $(1)$(SHARE_DIR)/charsets
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/charsets/* $(1)$(SHARE_DIR)/charsets
|
||||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/english/errmsg.sys $(1)$(SHARE_DIR)/english
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/english/errmsg.sys $(1)$(SHARE_DIR)/english
|
||||||
|
@ -544,8 +551,18 @@ This package provides the $(1) plugin.
|
||||||
$(INSTALL_DIR) $$(1)$(PLUGIN_DIR)
|
$(INSTALL_DIR) $$(1)$(PLUGIN_DIR)
|
||||||
$(call Package/mariadb/install/plugin,$$(1),$(1))
|
$(call Package/mariadb/install/plugin,$$(1),$(1))
|
||||||
ifeq ($(1),auth_pam)
|
ifeq ($(1),auth_pam)
|
||||||
$(CP) $(PKG_INSTALL_DIR)$(PLUGIN_DIR)/auth_pam_tool_dir \
|
$(INSTALL_DIR) -m0750 $$(1)$(PLUGIN_DIR)/auth_pam_tool_dir
|
||||||
$$(1)$(PLUGIN_DIR)
|
$(INSTALL_SUID) \
|
||||||
|
$(PKG_INSTALL_DIR)$(PLUGIN_DIR)/auth_pam_tool_dir/auth_pam_tool \
|
||||||
|
$$(1)$(PLUGIN_DIR)/auth_pam_tool_dir
|
||||||
|
$(INSTALL_DIR) $$(1)/etc/security
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/etc/security/user_map.conf \
|
||||||
|
$$(1)/etc/security
|
||||||
|
$(INSTALL_DIR) $$(1)/lib/security
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/lib/security/pam_user_map.so \
|
||||||
|
$$(1)/lib/security
|
||||||
endif
|
endif
|
||||||
ifeq ($(1),ha_spider)
|
ifeq ($(1),ha_spider)
|
||||||
$(INSTALL_DIR) $$(1)$(SHARE_DIR)
|
$(INSTALL_DIR) $$(1)$(SHARE_DIR)
|
||||||
|
@ -556,11 +573,18 @@ endif
|
||||||
$$(eval $$(call BuildPackage,mariadb-server-plugin-$(subst _,-,$(1))))
|
$$(eval $$(call BuildPackage,mariadb-server-plugin-$(subst _,-,$(1))))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# Directory "auth_pam_tool_dir" is installed with '-m0750' above and
|
||||||
|
# contains SUID binary "auth_pam_tool". Below post-install script
|
||||||
|
# changes the group of "auth_pam_tool_dir" to mariadb, so user mariadb
|
||||||
|
# can access the folder (and the SUID binary). The script only changes
|
||||||
|
# the group if the directory is currently owned by "root:root".
|
||||||
define Package/mariadb-server-plugin-auth-pam/postinst
|
define Package/mariadb-server-plugin-auth-pam/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||||
chown root:mariadb /usr/lib/mariadb/plugin/auth_pam_tool_dir > /dev/null 2>&1
|
dir="/usr/lib/mariadb/plugin/auth_pam_tool_dir"
|
||||||
chmod 0750 /usr/lib/mariadb/plugin/auth_pam_tool_dir > /dev/null 2>&1
|
if ! [ -L "$$dir" ] && [ -d "$$dir" ] && [ -O "$$dir" ] && [ -G "$$dir" ]; then
|
||||||
|
chown :mariadb "$$dir"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
endef
|
endef
|
||||||
|
|
|
@ -56,7 +56,6 @@ query_cache_size = 16M
|
||||||
#
|
#
|
||||||
# * Logging and Replication
|
# * Logging and Replication
|
||||||
#
|
#
|
||||||
# Both location gets rotated by the cronjob.
|
|
||||||
# Be aware that this log type is a performance killer.
|
# Be aware that this log type is a performance killer.
|
||||||
# As of 5.1 you can enable the log at runtime!
|
# As of 5.1 you can enable the log at runtime!
|
||||||
#general_log_file = /var/log/mysql/mysql.log
|
#general_log_file = /var/log/mysql/mysql.log
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
|
|
||||||
config mysqld 'general'
|
config mysqld 'general'
|
||||||
option enabled '0'
|
option enabled '0' # 0 - disabled, 1 - enabled
|
||||||
option log_stderr '1'
|
option options '--syslog' # Options passed to mysqld_safe
|
||||||
option log_stdout '1'
|
|
||||||
option options ''
|
|
||||||
|
|
||||||
|
|
|
@ -4,48 +4,71 @@
|
||||||
START=95
|
START=95
|
||||||
STOP=10
|
STOP=10
|
||||||
|
|
||||||
USE_PROCD=1
|
|
||||||
|
|
||||||
#PROCD_DEBUG=1
|
|
||||||
|
|
||||||
NAME=mysqld
|
NAME=mysqld
|
||||||
|
|
||||||
LOGGER="/usr/bin/logger -p user.err -s -t $NAME --"
|
LOGGER="/usr/bin/logger -p user.err -s -t $NAME --"
|
||||||
COMMAND=/usr/bin/$NAME
|
|
||||||
|
MYSQLADMIN=/usr/bin/mysqladmin
|
||||||
|
MYSQLD=/usr/bin/$NAME
|
||||||
|
MYSQLDSAFE=/usr/bin/mysqld_safe
|
||||||
|
|
||||||
|
# mysqladmin likes to read /root/.my.cnf which could cause issues.
|
||||||
|
export HOME=/etc/mysql
|
||||||
|
|
||||||
|
# Safeguard (relative paths, core dumps...)
|
||||||
|
cd /
|
||||||
|
|
||||||
mysqld_get_param() {
|
mysqld_get_param() {
|
||||||
$COMMAND --print-defaults \
|
$MYSQLD --print-defaults \
|
||||||
| tr " " "\n" \
|
| tr " " "\n" \
|
||||||
| grep -- "--$1" \
|
| grep -- "--$1" \
|
||||||
| tail -n 1 \
|
| tail -n 1 \
|
||||||
| cut -d= -f2
|
| cut -d= -f2
|
||||||
}
|
}
|
||||||
|
|
||||||
start_service() {
|
# Checks if a server is running and accessible.
|
||||||
local conf=/etc/mysql/my.cnf
|
#
|
||||||
local dir
|
# check_alive insists on a pingable server
|
||||||
local user
|
# check_dead also fails if there is a lost mysqld in the process list
|
||||||
local group
|
#
|
||||||
|
# Usage: boolean mysqld_status [check_alive|check_dead]
|
||||||
local logfile
|
mysqld_status() {
|
||||||
|
if $MYSQLADMIN ping >/dev/null 2>&1; then
|
||||||
local datadir
|
ping_alive=1
|
||||||
local logdir=/var/log/mysql
|
else
|
||||||
local rundir=/var/run/mysqld
|
ping_alive=0
|
||||||
local tmpdir
|
|
||||||
|
|
||||||
local enabled
|
|
||||||
local log_stderr
|
|
||||||
local log_stdout
|
|
||||||
local options
|
|
||||||
|
|
||||||
local hint="please fix your server configuration in /etc/mysql/"
|
|
||||||
|
|
||||||
if [ ! -x $COMMAND ]; then
|
|
||||||
$LOGGER $COMMAND is missing
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
ps_alive=0
|
||||||
|
pidfile=$(mysqld_get_param pid-file)
|
||||||
|
if [ -f "$pidfile" ] && kill -0 $(cat "$pidfile") >/dev/null 2>&1; then
|
||||||
|
ps_alive=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if { [ "$1" = check_alive ] && [ $ping_alive = 1 ]; } || \
|
||||||
|
{ [ "$1" = check_dead ] && [ $ping_alive = 0 ] \
|
||||||
|
&& [ $ps_alive = 0 ]; }
|
||||||
|
then
|
||||||
|
return 0 # EXIT_SUCCESS
|
||||||
|
else
|
||||||
|
return 1 # EXIT_FAILURE
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
conf=/etc/mysql/my.cnf
|
||||||
|
logdir=/var/log/mysql
|
||||||
|
rundir=/var/run/mysqld
|
||||||
|
|
||||||
|
hint="please fix your server configuration in /etc/mysql/"
|
||||||
|
|
||||||
|
for i in $MYSQLD $MYSQLADMIN $MYSQLDSAFE; do
|
||||||
|
if [ ! -x $i ]; then
|
||||||
|
$LOGGER $i is missing
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
if [ ! -r $conf ]; then
|
if [ ! -r $conf ]; then
|
||||||
$LOGGER $conf cannot be read
|
$LOGGER $conf cannot be read
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -59,15 +82,10 @@ start_service() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
config_get_bool log_stderr general log_stderr 1
|
|
||||||
config_get_bool log_stdout general log_stdout 1
|
|
||||||
|
|
||||||
config_get options general options
|
config_get options general options
|
||||||
|
|
||||||
datadir=$(mysqld_get_param datadir)
|
datadir=$(mysqld_get_param datadir)
|
||||||
logfile=$(mysqld_get_param general_log_file)
|
|
||||||
tmpdir=$(mysqld_get_param tmpdir)
|
tmpdir=$(mysqld_get_param tmpdir)
|
||||||
user=$(mysqld_get_param user)
|
|
||||||
|
|
||||||
if [ -z "$datadir" ]; then
|
if [ -z "$datadir" ]; then
|
||||||
$LOGGER datadir is not set
|
$LOGGER datadir is not set
|
||||||
|
@ -81,76 +99,48 @@ start_service() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$user" ]; then
|
|
||||||
$LOGGER user is not set
|
|
||||||
$LOGGER $hint
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
user_exists "$user" || {
|
|
||||||
$LOGGER user \""$user"\" does not exist
|
|
||||||
$LOGGER $hint
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
group=$(id -g -n "$user")
|
|
||||||
|
|
||||||
group_exists "$group" || {
|
|
||||||
$LOGGER group \""$group"\" does not exist
|
|
||||||
$LOGGER user \""$user"\" not configured correctly
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
[ -n "$logfile" ] && logdir=$(dirname "$logfile")
|
|
||||||
|
|
||||||
# do not touch directories that already exist
|
|
||||||
# posix shell does not support arrays, hence using awk
|
|
||||||
awk \
|
|
||||||
-v user="$user" \
|
|
||||||
-v group="$group" \
|
|
||||||
-v a="$datadir" \
|
|
||||||
-v b="$logdir" \
|
|
||||||
-v c="$rundir" \
|
|
||||||
-v d="$tmpdir" \
|
|
||||||
'
|
|
||||||
BEGIN {
|
|
||||||
dir[0]=a
|
|
||||||
dir[1]=b
|
|
||||||
dir[2]=c
|
|
||||||
dir[3]=d
|
|
||||||
for (x in dir) {
|
|
||||||
if (system("test ! -e \"" dir[x] "\"" )) {
|
|
||||||
delete dir[x]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (x in dir) {
|
|
||||||
system("mkdir -p \"" dir[x] "\"" )
|
|
||||||
system("chmod 750 \"" dir[x] "\"" )
|
|
||||||
system("chown \"" user "\":\"" group "\" \"" dir[x] "\"" )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'
|
|
||||||
|
|
||||||
if [ ! -f "$datadir/mysql/tables_priv.MAD" ]; then
|
if [ ! -f "$datadir/mysql/tables_priv.MAD" ]; then
|
||||||
local args="--force"
|
args="--force"
|
||||||
local basedir=$(mysqld_get_param basedir)
|
basedir=$(mysqld_get_param basedir)
|
||||||
[ -n "$basedir" ] && args="$args --basedir=$basedir"
|
[ -n "$basedir" ] && args="$args --basedir=$basedir"
|
||||||
|
|
||||||
$LOGGER Cannot detect privileges table. You might need to run
|
$LOGGER Cannot detect privileges table. You might need to run
|
||||||
$LOGGER \'mysql_install_db $args\'
|
$LOGGER \'mysql_install_db "$args"\'
|
||||||
$LOGGER to initialize the system tables.
|
$LOGGER to initialize the system tables.
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
procd_open_instance
|
# Start daemon
|
||||||
|
if mysqld_status check_alive; then
|
||||||
|
$LOGGER already running
|
||||||
|
else
|
||||||
|
for i in $logdir $rundir; do
|
||||||
|
opts="-m 0750"
|
||||||
|
if ! [ -e $i ]; then
|
||||||
|
# $rundir needs to be accessible for
|
||||||
|
# clients
|
||||||
|
if [ $i = $rundir ]; then
|
||||||
|
opts=
|
||||||
|
fi
|
||||||
|
mkdir -p $opts $i
|
||||||
|
[ -d $i ] && chown mariadb:mariadb $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
procd_set_param command $COMMAND $options
|
$MYSQLDSAFE $options >/dev/null 2>&1 &
|
||||||
|
fi
|
||||||
# forward stderr to logd
|
|
||||||
procd_set_param stderr $log_stderr
|
|
||||||
# same for stdout
|
|
||||||
procd_set_param stdout $log_stdout
|
|
||||||
|
|
||||||
procd_close_instance
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
if ! mysqld_status check_dead; then
|
||||||
|
$MYSQLADMIN shutdown
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
reload() {
|
||||||
|
if mysqld_status check_alive; then
|
||||||
|
$MYSQLADMIN reload
|
||||||
|
else
|
||||||
|
$LOGGER not running
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
--- a/scripts/mysqld_safe.sh
|
||||||
|
+++ b/scripts/mysqld_safe.sh
|
||||||
|
@@ -242,7 +242,7 @@ wsrep_recover_position() {
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- local wr_pidfile="$DATADIR/"`@HOSTNAME@`"-recover.pid"
|
||||||
|
+ local wr_pidfile="$DATADIR/"$(uci get 'system.@system[0].hostname')"-recover.pid"
|
||||||
|
|
||||||
|
local wr_options="--disable-log-error --pid-file='$wr_pidfile'"
|
||||||
|
|
||||||
|
@@ -673,7 +673,7 @@ then
|
||||||
|
* ) err_log="$DATADIR/$err_log" ;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
- err_log=$DATADIR/`@HOSTNAME@`.err
|
||||||
|
+ err_log=$DATADIR/$(uci get 'system.@system[0].hostname').err
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
@@ -752,7 +752,7 @@ fi
|
||||||
|
|
||||||
|
if test -z "$pid_file"
|
||||||
|
then
|
||||||
|
- pid_file="`@HOSTNAME@`.pid"
|
||||||
|
+ pid_file="$(uci get 'system.@system[0].hostname').pid"
|
||||||
|
fi
|
||||||
|
# MariaDB wants pid file without datadir
|
||||||
|
append_arg_to_args "--pid-file=$pid_file"
|
Loading…
Reference in a new issue