Skip to content

Commit 18a38b4

Browse files
committed
Release 3.8.3 - See CHANGELOG.md
1 parent 150f356 commit 18a38b4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
17
## 3.8.2 2023-03-30 <dave at tiredofit dot ca>
28

39
### Changed

install/assets/functions/10-db-backup

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,8 +671,7 @@ move_dbbackup() {
671671
fi
672672
if [ -n "${DB_ARCHIVE_TIME}" ] ; then
673673
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 {} \;
674+
find "${DB_DUMP_TARGET}"/ -maxdepth 1 -mmin +"${DB_ARCHIVE_TIME}" -iname "*" -exec mv {} "${DB_DUMP_TARGET_ARCHIVE}" \;
676675
fi
677676
;;
678677
"s3" | "minio" )

0 commit comments

Comments
 (0)