Skip to content

Commit aaf6309

Browse files
committed
Release 4.0.2 - See CHANGELOG.md
1 parent 55d2067 commit aaf6309

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.0.2 2023-11-09 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Properly use custom _S3_HOST variables
5+
6+
17
## 4.0.1 2023-11-09 <dave at tiredofit dot ca>
28

39
### Changed

install/assets/functions/10-db-backup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ move_dbbackup() {
13991399
s3_ssl="--no-verify-ssl"
14001400
fi
14011401

1402-
[[ ( -n "${S3_HOST}" ) ]] && PARAM_AWS_ENDPOINT_URL=" --endpoint-url ${backup_job_s3_protocol}://${backup_job_s3_host}"
1402+
[[ ( -n "${backup_job_s3_host}" ) ]] && PARAM_AWS_ENDPOINT_URL=" --endpoint-url ${backup_job_s3_protocol}://${backup_job_s3_host}"
14031403

14041404
silent aws ${PARAM_AWS_ENDPOINT_URL} s3 cp ${TEMP_PATH}/${backup_job_filename} s3://${backup_job_s3_bucket}/${backup_job_s3_path}/${backup_job_filename} ${s3_ssl} ${s3_ca_cert} ${backup_job_s3_extra_opts}
14051405
move_exit_code=$?

0 commit comments

Comments
 (0)