Compare commits

..

3 Commits
2.3.0 ... 2.3.1

Author SHA1 Message Date
Dave Conroy
738f7fad25 Release 2.3.1 - See CHANGELOG.md 2020-11-11 13:45:05 -08:00
Dave Conroy
8c4733bf7f Merge pull request #52 from bambi73/master
#51 Fix backup of multiple InfluxDB databases failure
2020-11-11 13:43:56 -08:00
Bambi125
be4d8c0747 #51 Fix backup of multiple InfluxDB databases failure 2020-11-11 22:38:04 +01:00
2 changed files with 7 additions and 0 deletions

View File

@@ -1,7 +1,13 @@
## 2.3.1 2020-11-11 <bambi73@github>
### Fixed
- Multiple Influx DB's not being backed up correctly
## 2.3.0 2020-10-15 <dave at tiredofit dot ca> ## 2.3.0 2020-10-15 <dave at tiredofit dot ca>
### Added ### Added
- Microsoft SQL Server support (experimental) - Microsoft SQL Server support (experimental)
### Changed ### Changed
- Compiled Postgresql 13 from source to backup psql/13 hosts - Compiled Postgresql 13 from source to backup psql/13 hosts

View File

@@ -140,6 +140,7 @@ backup_influx() {
influx_compression="-portable" influx_compression="-portable"
fi fi
for DB in $DB_NAME; do for DB in $DB_NAME; do
target=influx_${DB}_${dbhost}_${now}
influxd backup ${influx_compression} -database $DB -host ${dbhost}:${dbport} ${tmpdir}/${target} influxd backup ${influx_compression} -database $DB -host ${dbhost}:${dbport} ${tmpdir}/${target}
exit_code=$? exit_code=$?
generate_md5 generate_md5