From 6409446a3466e81386fad24b928c58473b3ade05 Mon Sep 17 00:00:00 2001 From: Michal Schorm Date: Wed, 16 Nov 2016 11:48:42 +0100 Subject: [PATCH] Update of mysql-prepare-db-dir.sh - Solves: https://bugzilla.redhat.com/show_bug.cgi?id=1382988 --- mysql-prepare-db-dir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-prepare-db-dir.sh b/mysql-prepare-db-dir.sh index 81a90e7..b47fa9b 100644 --- a/mysql-prepare-db-dir.sh +++ b/mysql-prepare-db-dir.sh @@ -20,7 +20,7 @@ ls_check_datadir () should_initialize () { case `ls_check_datadir "$1"` in - ""|lost+found) true ;; + ""|lost+found|*.err) true ;; *) false ;; esac }