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 150f356 commit 18a38b4Copy full SHA for 18a38b4
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## 3.8.3 2023-03-30 <dave at tiredofit dot ca>
2
+
3
+ ### Changed
4
+ - Patchup for 3.8.2
5
6
7
## 3.8.2 2023-03-30 <dave at tiredofit dot ca>
8
9
### Changed
install/assets/functions/10-db-backup
@@ -671,8 +671,7 @@ move_dbbackup() {
671
fi
672
if [ -n "${DB_ARCHIVE_TIME}" ] ; then
673
mkdir -p "${DB_DUMP_TARGET_ARCHIVE}"
674
- find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_ARCHIVE_TIME}" -iname "*" -exec mv {} foo \;
675
- find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_CLEANUP_TIME}" -iname "*" -exec rm {} \;
+ find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_ARCHIVE_TIME}" -iname "*" -exec mv {} "${DB_DUMP_TARGET_ARCHIVE}" \;
676
677
;;
678
"s3" | "minio" )
0 commit comments