From 48a1ff8bbeb5dc4a43a60f6063ea4b5b48be8dfc Mon Sep 17 00:00:00 2001 From: "dave@tiredofit.ca" Date: Wed, 13 Sep 2023 22:37:21 -0700 Subject: [PATCH] Release 3.10.1 - See CHANGELOG.md --- CHANGELOG.md | 6 ++++++ install/assets/functions/10-db-backup | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50c999e..6953eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.10.1 2023-09-13 + + ### Changed + - Bugfix to 3.10.0 with syntax error revolving around unbraced variable + + ## 3.10.0 2023-09-13 ### Added diff --git a/install/assets/functions/10-db-backup b/install/assets/functions/10-db-backup index 5979539..982cfb8 100644 --- a/install/assets/functions/10-db-backup +++ b/install/assets/functions/10-db-backup @@ -159,7 +159,7 @@ backup_influx() { compression pre_dbbackup $db print_notice "Dumping Influx database: '${db}'" - influxd backup ${influx_compression} ${bucket} -portable -host ${DB_HOST}:${DB_PORT} ${EXTRA_OPTS ${EXTRA_DUMP_OPTS} "${TEMP_LOCATION}"/"${target_dir}" + influxd backup ${influx_compression} ${bucket} -portable -host ${DB_HOST}:${DB_PORT} ${EXTRA_OPTS} ${EXTRA_DUMP_OPTS} "${TEMP_LOCATION}"/"${target_dir}" exit_code=$? check_exit_code backup $target_dir print_notice "Creating archive file of '${target_dir}' with tar ${compression_string}"