Release 3.0.14 - See CHANGELOG.md

This commit is contained in:
Dave Conroy
2022-03-22 07:52:15 -07:00
parent baba842373
commit d9a4690ea2
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## 3.0.14 2022-03-22 <dave at tiredofit dot ca>
### Changed
- Rearrange Notice stating when next backup is going to start
## 3.0.13 2022-03-21 <dave at tiredofit dot ca>
### Added

View File

@@ -142,7 +142,7 @@ while true; do
exit ${exit_code};
else
### Go back to sleep until next backup time
sleep $(($DB_DUMP_FREQ*60-backup_total_time))
print_notice "Sleeping for another $(($DB_DUMP_FREQ*60-backup_total_time)) seconds. Waking up at $(date -d@"$(( $(date +%s)+$(($DB_DUMP_FREQ*60-backup_total_time))))" +"%Y-%m-%d %T %Z") "
sleep $(($DB_DUMP_FREQ*60-backup_total_time))
fi
done