mariadb: minor whitespace and typo fixes

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
This commit is contained in:
Michael Heimpold 2023-12-20 10:00:08 +01:00 committed by Hannu Nyman
parent a66fd0f835
commit 357fa2930c
3 changed files with 24 additions and 25 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mariadb
PKG_VERSION:=10.9.8
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL := https://archive.mariadb.org/$(PKG_NAME)-$(PKG_VERSION)/source

View File

@ -1,13 +1,12 @@
config mysqld 'general'
# Unless enable, MariaDB will not start without this
option enabled '0'
option enabled '0'
# User to run MariaDB as
option user 'mariadb'
# Group to run MariaDB
option group 'mariadb'
# If there is now database, create an empty one automatically
# If there is no database, create an empty one automatically
option init '1'
# If upgrading old database, run mysql_upgrade during restart
option upgrade '1'

View File

@ -147,7 +147,7 @@ start_service() {
# Migration from old versions
# shellcheck disable=SC2154
if [ "$(cat "$datadir"/.version 2> /dev/null)" \!= "$version" ] && [ "$autoupgrade" -gt 0 ]; then
if [ "$(cat "$datadir"/.version 2> /dev/null)" \!= "$version" ] && [ "$autoupgrade" -gt 0 ]; then
# Check for correct owner
local owner="$(stat --format %U:%G "$datadir" 2> /dev/null)"
if [ -n "$owner" ] && [ "$owner" != "$my_user:$my_group" ]; then
@ -155,34 +155,34 @@ start_service() {
fi
# Start upgrade instance without credentials
sudo -u "$my_user" mysqld --skip-networking --skip-grant-tables --socket=/tmp/mysql_upgrade.sock &
sudo -u "$my_user" mysqld --skip-networking --skip-grant-tables --socket=/tmp/mysql_upgrade.sock &
PID="$!"
i=0
i=0
# Wait for upgrade instance of db to start
while [ "$i" -lt 15 ] && test \! -S /tmp/mysql_upgrade.sock; do
sleep 1
i="$((i + 1))"
done
[ -S /tmp/mysql_upgrade.sock ] || {
while [ "$i" -lt 15 ] && test \! -S /tmp/mysql_upgrade.sock; do
sleep 1
i="$((i + 1))"
done
[ -S /tmp/mysql_upgrade.sock ] || {
$LOGGER "Failed to start upgrading instance of MariaDB."
exit 1
}
# Upgrade the database
mysql_upgrade --upgrade-system-tables --socket=/tmp/mysql_upgrade.sock
echo "$version" > "$datadir"/.version
mysql_upgrade --upgrade-system-tables --socket=/tmp/mysql_upgrade.sock
echo "$version" > "$datadir"/.version
# Stop the upgrade instance
kill "$PID"
i=0
while [ "$i" -lt 60 ] && grep -q mysql "/proc/$PID/cmdline"; do
sleep 1
[ "$i" -lt 30 ] || kill "$PID"
i="$((i + 1))"
done
kill "$PID"
i=0
while [ "$i" -lt 60 ] && grep -q mysql "/proc/$PID/cmdline"; do
sleep 1
[ "$i" -lt 30 ] || kill "$PID"
i="$((i + 1))"
done
# Use force
if grep -q mysql "/proc/$PID/cmdline"; then
kill -9 "$PID"
fi
fi
if grep -q mysql "/proc/$PID/cmdline"; then
kill -9 "$PID"
fi
fi
# Start daemon
procd_open_instance