creating influxdb config file during startup.

This commit is contained in:
Jason Kulatunga
2021-08-06 23:26:40 -07:00
parent a60edfff26
commit abe7a16507
3 changed files with 13 additions and 4 deletions
+13
View File
@@ -1,4 +1,17 @@
#!/usr/bin/with-contenv bash
mkdir -p /scrutiny/influxdb/
if [ -f "/scrutiny/influxdb/config.yaml" ]; then
echo "influxdb config file already exists. skipping."
else
cat << 'EOF' > /scrutiny/influxdb/config.yaml
bolt-path: /scrutiny/influxdb/influxd.bolt
engine-path: /scrutiny/influxdb/engine
http-bind-address: ":8086"
reporting-disabled: true
EOF
fi
echo "starting influxdb"
influxd run
View File
-4
View File
@@ -1,4 +0,0 @@
bolt-path: /scrutiny/influxdb/influxd.bolt
engine-path: /scrutiny/influxdb/engine
http-bind-address: ":8086"
reporting-disabled: true