You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
471 B
18 lines
471 B
#!/usr/bin/env sh
|
|
|
|
if [ ! -f "/var/lib/influxdb/.init" ]; then
|
|
exec influxd $@ &
|
|
|
|
until wget -q "http://localhost:8086/ping" 2> /dev/null; do
|
|
sleep 1
|
|
done
|
|
|
|
influx -host=localhost -port=8086 -execute="CREATE USER ${INFLUX_USER} WITH PASSWORD '${INFLUX_PASSWORD}' WITH ALL PRIVILEGES"
|
|
influx -host=localhost -port=8086 -execute="CREATE DATABASE ${INFLUX_DB}"
|
|
|
|
touch "/var/lib/influxdb/.init"
|
|
|
|
kill -s TERM %1
|
|
fi
|
|
|
|
exec influxd $@
|
|
|