From 25e238a1e284bea27f2664a2a79543e9c4cf62e3 Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Tue, 2 Jan 2024 00:53:25 +0100 Subject: [PATCH] Reverted to calling mysqldump instead of mariadb-dump (more retro-compatible) --- web/init/dump.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/init/dump.sh b/web/init/dump.sh index 5d6b26e..8fc89c0 100755 --- a/web/init/dump.sh +++ b/web/init/dump.sh @@ -1,2 +1,2 @@ #!/bin/sh -mariadb-dump --single-transaction -d -u root -p mastostart | sed -e 's/ AUTO_INCREMENT=[0-9]\+ / /' > mastostart_solo_struttura.sql +mysqldump --single-transaction -d -u root -p mastostart | sed -e 's/ AUTO_INCREMENT=[0-9]\+ / /' > mastostart_solo_struttura.sql