Skip to content

Commit 859ce5f

Browse files
committed
Release 1.20.1 - See CHANGELOG.md
1 parent 4d1577e commit 859ce5f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.20.1 2020-04-24 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix Auto Cleanup routines when using `root` as username
5+
6+
17
## 1.20.0 2020-04-22 <dave at tiredofit dot ca>
28

39
### Added

install/etc/s6/services/10-db-backup/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ print_info "Initialized on `date`"
380380

381381
### Automatic Cleanup
382382
if [[ -n "$DB_CLEANUP_TIME" ]]; then
383-
find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "$DBTYPE_$DBNAME_*.*" -exec rm {} \;
383+
find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "*" -exec rm {} \;
384384
fi
385385

386386
### Post Backup Custom Script Support

0 commit comments

Comments
 (0)