* Sun Apr 20 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-14.sme

- set innodb_page_size=64k [SME: 12982]
  breaking change, needs backup and restore of mariadb databases
- convert mysql* bins call to mariadb-* [SME: 12983]
- revert [SME: 12591]
This commit is contained in:
2025-04-20 00:53:33 -04:00
parent b3e9d320f3
commit 7d26d7368d
7 changed files with 32 additions and 21 deletions

View File

@@ -41,8 +41,8 @@ if ( ($runlevel ne 'multi-user.target' && $runlevel ne "sme-server.target") ||
{
# Find our mysqld binary
my $mysqld = "/usr/libexec/mysqld";
if (-f "/usr/sbin/mysqld") {
$mysqld = "/usr/sbin/mysqld";
if (-f "/usr/sbin/mariadbd") {
$mysqld = "/usr/sbin/mariadbd";
}
# Hard-code user, since it is set in mysqld_safe currently.
# See http://bugs.mysql.com/2163