Release 1.20.1 - See CHANGELOG.md

This commit is contained in:
Dave Conroy
2020-04-24 15:45:52 -07:00
parent 4d1577e553
commit 859ce5ffa3
2 changed files with 7 additions and 1 deletions

View File

@@ -380,7 +380,7 @@ print_info "Initialized on `date`"
### Automatic Cleanup
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
### Post Backup Custom Script Support