summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbackup-mysql2
1 files changed, 1 insertions, 1 deletions
diff --git a/backup-mysql b/backup-mysql
index 4826415..b68b877 100755
--- a/backup-mysql
+++ b/backup-mysql
@@ -50,7 +50,7 @@ for host in $HOSTS; do
DBs=$(
echo 'SHOW DATABASES;' | mysql --defaults-file="$mysqlcnf" --host="$host" | tail -n +2 |
while read db; do
- if [ "$db" = "innodb" -o "$db" = "test" ] ; then
+ if [ "$db" = "innodb" ] || [ "$db" = "test" ] || [ "$db" = "lost+found" ] ; then
continue;
fi
echo $db;