From 23107b3e56afa04bc6fafaa1e09b406e668b2a8e Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Thu, 22 Aug 2024 13:45:41 +0200 Subject: [PATCH] =?UTF-8?q?Replaced=20=E2=80=9Cmysqldump=E2=80=9D=20with?= =?UTF-8?q?=20=E2=80=9Cmariadb-dump=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 8fc89c0..5d6b26e 100755 --- a/web/init/dump.sh +++ b/web/init/dump.sh @@ -1,2 +1,2 @@ #!/bin/sh -mysqldump --single-transaction -d -u root -p mastostart | sed -e 's/ AUTO_INCREMENT=[0-9]\+ / /' > mastostart_solo_struttura.sql +mariadb-dump --single-transaction -d -u root -p mastostart | sed -e 's/ AUTO_INCREMENT=[0-9]\+ / /' > mastostart_solo_struttura.sql