* 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

@@ -46,13 +46,13 @@ do
F=$(basename $link | sed 's/S\?[0-9][0-9]_\?//')
case $F in
*.sql)
action "Loading $F into mysql" perl -e '
action "Loading $F into mariadb" perl -e '
open (STDERR, "|/usr/bin/logger -p local1.info -t mysql.init");
open (STDOUT, ">&STDERR");
exec "/usr/bin/mysql";' < $link && /bin/rm $link
exec "/usr/bin/mariadb";' < $link && /bin/rm $link
;;
*)
action "Loading $F into mysql" perl -e '
action "Loading $F into mariadb" perl -e '
open (STDERR, "|/usr/bin/logger -p local1.info -t mysql.init");
open (STDOUT, ">&STDERR");
exec shift; ' $link && /bin/rm $link