storj/cmd/satellite/entrypoint
Philip Hutchins b5f51014d3
Adding additional required values for satellite configuration (#1036)
* Adding other top level vars to be parsed into config

* Adding additional vars for parsing

* Fixing shell script conditionals in remaining entrypoints

* Adding null default for remaining env variable if statements
2019-01-11 22:47:18 -05:00

42 lines
1015 B
Bash
Executable File

#!/bin/sh
set -euo pipefail
SETUP_PARAMS=""
if [[ -n "${API_KEY:-}" ]]; then
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
export STORJ_AUDIT_API_KEY="${API_KEY}"
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
export STORJ_REPAIRER_API_KEY="${API_KEY}"
fi
if [[ -n "${OVERLAY_URL:-}" ]]; then
export STORJ_POINTER_DB_DATABASE_URL="${OVERLAY_URL}"
else
export STORJ_POINTER_DB_DATABASE_URL="${STORJ_DATABASE}"
fi
if [[ -n "${IDENTITY_ADDR:-}" ]]; then
export STORJ_SERVER_ADDRESS="${IDENTITY_ADDR}"
fi
if [[ -n "${BOOTSTRAP_ADDR:-}" ]]; then
export STORJ_KADEMLIA_BOOTSTRAP_ADDR="${BOOTSTRAP_ADDR}"
fi
if [[ ! -f "${CONF_PATH}/config.yaml" ]]; then
if [[ -n "${CA_DIFFICULTY:-}" ]]; then
SETUP_PARAMS="--ca.difficulty ${CA_DIFFICULTY}"
fi
./satellite setup $SETUP_PARAMS
fi
RUN_PARAMS="${RUN_PARAMS:-} --config-dir ${CONF_PATH}"
if [[ -n "${BOOTSTRAP_ADDR:-}" ]]; then
RUN_PARAMS="${RUN_PARAMS} --kademlia.bootstrap-addr ${BOOTSTRAP_ADDR}"
fi
exec ./satellite run $RUN_PARAMS "$@"