b2ff13f1fa
* set up satellite repair run command * add separated repair process to storj-sim * add repairer peer to satellite in testplanet * move api run cmd into api.go * add satellite run repair to entrypoint
37 lines
834 B
Bash
Executable File
37 lines
834 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 "${STORJ_DATABASE:-}" ]]; then
|
|
export STORJ_POINTER_DB_DATABASE_URL="${STORJ_DATABASE}"
|
|
fi
|
|
|
|
|
|
if [[ -n "${IDENTITY_ADDR:-}" ]]; then
|
|
export STORJ_SERVER_ADDRESS="${IDENTITY_ADDR}"
|
|
fi
|
|
|
|
if [[ ! -f "${CONF_PATH}/config.yaml" ]]; then
|
|
./satellite setup $SETUP_PARAMS
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config-dir ${CONF_PATH}"
|
|
|
|
if [ "${SATELLITE_API:-}" = "true" ]; then
|
|
exec ./satellite run api $RUN_PARAMS "$@"
|
|
fi
|
|
|
|
if [ "${SATELLITE_REPAIR:-}" = "true" ]; then
|
|
exec ./satellite run repair $RUN_PARAMS "$@"
|
|
fi
|
|
|
|
exec ./satellite run $RUN_PARAMS "$@"
|