replace mysql_upgrade with mariadb-upgrade and don't run on first install; fix chown warning [release 11.2.2-2mamba;Thu Dec 28 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 06:58:18 +01:00
parent a357ae5f9e
commit 6324ed8131

View File

@ -6,7 +6,7 @@
Name: mariadb
Version: 11.2.2
Release: 1mamba
Release: 2mamba
Summary: A SQL database engine designed as a drop-in replacement of MySQL(R)
Group: Applications/Databases
Vendor: openmamba
@ -295,7 +295,7 @@ if [ $1 -eq 1 ]; then
# new install: initialize db
mysql_install_db --basedir=%{_prefix} --ldata=/var/lib/mysql%{?MAJversion}
fi
/bin/chown -R mysql.mysql /var/lib/mysql%{?MAJversion}
/bin/chown -R mysql:mysql /var/lib/mysql%{?MAJversion}
systemctl -q enable mariadb
systemctl -q start mariadb
fi
@ -304,8 +304,10 @@ if [ $1 -ge 1 ]; then
systemctl -q enable mariadb
systemctl -q start mariadb
}
mysql_upgrade || {
echo "Run: 'mysql_upgrade -u root -p' to upgrade db!"
fi
if [ $1 -gt 1 ]; then
mariadb-upgrade || {
echo "Run: 'mariadb-upgrade -u root -p' to upgrade db!"
}
fi
:
@ -580,6 +582,9 @@ fi
%{_mandir}/man3/mysql_*.3*
%changelog
* Thu Dec 28 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 11.2.2-2mamba
- replace mysql_upgrade with mariadb-upgrade and don't run on first install; fix chown warning
* Tue Nov 21 2023 Automatic Build System <autodist@mambasoft.it> 11.2.2-1mamba
- automatic version update by autodist