Compare commits

..

1 Commits
1.9 ... 1.10

Author SHA1 Message Date
Dave Conroy
af5c6198ce InfluxDB fixes 2018-11-18 10:18:38 -08:00
3 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
## 1.10 - 2018-11-19 - <dave at tiredofit dot ca>
* Fix for InfluxDB for backing up and supporting DB_PORT variable - Thanks skylord123@github
## 1.9 - 2018-11-03 - <dave at tiredofit dot ca> ## 1.9 - 2018-11-03 - <dave at tiredofit dot ca>
* Switch from OpenSSL to LibreSSL * Switch from OpenSSL to LibreSSL

View File

@@ -0,0 +1,4 @@
#!/usr/bin/with-contenv bash
pkill bash

View File

@@ -126,7 +126,7 @@ function backup_mysql() {
function backup_influx() { function backup_influx() {
for DB in $DB_NAME; do for DB in $DB_NAME; do
influxd backup -database $DB -host {DBHOST} ${TMPDIR}/${TARGET} influxd backup -database $DB -host ${DBHOST} -p ${DBPORT} ${TMPDIR}/${TARGET}
generate_md5 generate_md5
compression compression
move_backup move_backup