mirror of
https://github.com/tiredofit/docker-db-backup.git
synced 2025-12-22 05:33:53 +01:00
Release 1.20.1 - See CHANGELOG.md
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
## 1.20.1 2020-04-24 <dave at tiredofit dot ca>
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Fix Auto Cleanup routines when using `root` as username
|
||||||
|
|
||||||
|
|
||||||
## 1.20.0 2020-04-22 <dave at tiredofit dot ca>
|
## 1.20.0 2020-04-22 <dave at tiredofit dot ca>
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -380,7 +380,7 @@ print_info "Initialized on `date`"
|
|||||||
|
|
||||||
### Automatic Cleanup
|
### Automatic Cleanup
|
||||||
if [[ -n "$DB_CLEANUP_TIME" ]]; then
|
if [[ -n "$DB_CLEANUP_TIME" ]]; then
|
||||||
find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "$DBTYPE_$DBNAME_*.*" -exec rm {} \;
|
find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "*" -exec rm {} \;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### Post Backup Custom Script Support
|
### Post Backup Custom Script Support
|
||||||
|
|||||||
Reference in New Issue
Block a user