Release 4.0.21 - See CHANGELOG.md

This commit is contained in:
dave@tiredofit.ca
2023-11-22 15:40:38 -08:00
parent 11f55f3d82
commit 257c4aca41
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## 4.0.21 2023-11-22 <dave at tiredofit dot ca>
### Changed
- Fix for SQLite backups not being cleaned up properly due to a malformed base
## 4.0.20 2023-11-21 <dave at tiredofit dot ca>
### Changed

View File

@@ -851,7 +851,7 @@ backup_sqlite3() {
db=$(basename "${backup_job_db_host}")
db="${db%.*}"
backup_job_filename=sqlite3_${db}_${now}.sqlite3
backup_job_filename_base=sqlite3_${db}.sqlite3
backup_job_filename_base=sqlite3_${db}
pre_dbbackup "${db}"
write_log notice "Dumping sqlite3 database: '${backup_job_db_host}' ${compression_string}"
if var_true "${DEBUG_BACKUP_SQLITE3}" ; then debug on; fi