Container with influxdb v1 database OBS-URL: https://build.opensuse.org/request/show/1058659 OBS-URL: https://build.opensuse.org/package/show/devel:microos:containers/influxdb-image?expand=0&rev=1
13 lines
150 B
Bash
13 lines
150 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "${1:0:1}" = '-' ]; then
|
|
set -- influxd "$@"
|
|
fi
|
|
|
|
if [ "$1" = 'influxd' ]; then
|
|
/init-influxdb.sh "${@:2}"
|
|
fi
|
|
|
|
exec "$@"
|