We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d1577e commit 859ce5fCopy full SHA for 859ce5f
CHANGELOG.md
@@ -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
7
## 1.20.0 2020-04-22 <dave at tiredofit dot ca>
8
9
### Added
install/etc/s6/services/10-db-backup/run
@@ -380,7 +380,7 @@ print_info "Initialized on `date`"
380
381
### Automatic Cleanup
382
if [[ -n "$DB_CLEANUP_TIME" ]]; then
383
- find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "$DBTYPE_$DBNAME_*.*" -exec rm {} \;
+ find $DB_DUMP_TARGET/ -mmin +$DB_CLEANUP_TIME -iname "*" -exec rm {} \;
384
fi
385
386
### Post Backup Custom Script Support
0 commit comments