Update mysqlbu-scripts.sh

This commit is contained in:
2025-09-12 18:03:51 -05:00
parent c331fe3b77
commit 96021dfde4

View File

@@ -254,7 +254,7 @@ case $1 in
DEST_DIR="${DAY_BACKUP_DIR}`date +%H-%M-%S`_BASE"
if [ "$BASE_BACKUP" != "" ]; then
echo -e "${idsCL[Green]}Daily base backup already done. Running incremental backup...${idsCL[Default]}"
echo -e "$(date) - ${idsCL[Green]}Daily base backup already done. Running incremental backup...${idsCL[Default]}"
sleep 3
$0 backup-incremental
exit 1
@@ -275,7 +275,7 @@ case $1 in
DEST_DIR="${DAY_BACKUP_DIR}`date +%H-%M-%S`"
if [ "$BASE_BACKUP" = "" ]; then
echo -e "${idsCL[Green]}Daily base backup not found. Running base backup...${idsCL[Default]}"
echo -e "$(date) - ${idsCL[Green]}Daily base backup not found. Running base backup...${idsCL[Default]}"
$0 backup-base
exit 1
fi