From 14d71f305308de219d0306367d1db1dd0db9b44b Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 7 Jun 2024 15:08:20 +0900 Subject: [PATCH] Naming update for full update info text --- borg.backup.mysql.sh | 2 +- borg.backup.pgsql.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/borg.backup.mysql.sh b/borg.backup.mysql.sh index 0366298..4182595 100755 --- a/borg.backup.mysql.sh +++ b/borg.backup.mysql.sh @@ -126,7 +126,7 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then ${BORG_PRUNE}; fi; DURATION=$[ $(date +'%s')-$LOCAL_START ]; - printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "databases" "${MODULE}" "$(convert_time ${DURATION})"; + printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "all databases" "${MODULE}" "$(convert_time ${DURATION})"; else ${MYSQL_CMD} ${MYSQL_DB_CONFIG_PARAM} -B -N -e "show databases" | while read db; do diff --git a/borg.backup.pgsql.sh b/borg.backup.pgsql.sh index d215472..8994351 100755 --- a/borg.backup.pgsql.sh +++ b/borg.backup.pgsql.sh @@ -134,7 +134,7 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then ${BORG_PRUNE}; fi; DURATION=$[ $(date +'%s')-$LOCAL_START ]; - printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "databases" "${MODULE}" "$(convert_time ${DURATION})"; + printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "all databases" "${MODULE}" "$(convert_time ${DURATION})"; else # dump globals first db="pg_globals";