Compare commits

...

1 Commits
3.8.2 ... 3.8.3

Author SHA1 Message Date
dave@tiredofit.ca
18a38b4f1d Release 3.8.3 - See CHANGELOG.md 2023-03-30 14:18:55 -07:00
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
## 3.8.3 2023-03-30 <dave at tiredofit dot ca>
### Changed
- Patchup for 3.8.2
## 3.8.2 2023-03-30 <dave at tiredofit dot ca> ## 3.8.2 2023-03-30 <dave at tiredofit dot ca>
### Changed ### Changed

View File

@@ -671,8 +671,7 @@ move_dbbackup() {
fi fi
if [ -n "${DB_ARCHIVE_TIME}" ] ; then if [ -n "${DB_ARCHIVE_TIME}" ] ; then
mkdir -p "${DB_DUMP_TARGET_ARCHIVE}" mkdir -p "${DB_DUMP_TARGET_ARCHIVE}"
find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_ARCHIVE_TIME}" -iname "*" -exec mv {} foo \; find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_ARCHIVE_TIME}" -iname "*" -exec mv {} "${DB_DUMP_TARGET_ARCHIVE}" \;
find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_CLEANUP_TIME}" -iname "*" -exec rm {} \;
fi fi
;; ;;
"s3" | "minio" ) "s3" | "minio" )