summaryrefslogtreecommitdiff
path: root/scripts/docker/files/bin/run-client-bootstrap.sh
blob: fbbb42e8af1526095c8aec7aec2560a0e9e9b264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

# Run a Soledad client connection test.
#
# This script is meant to be copied to the docker container and run upon
# container start.

CMD="/usr/local/soledad/setup-test-env.py"
REPO="/var/local/soledad"

if [ ! -z "${SOLEDAD_REMOTE}" ]; then
  git -C ${REPO} remote set-url origin ${SOLEDAD_REMOTE}
  git -C ${REPO} fetch origin
fi

if [ ! -z "${SOLEDAD_BRANCH}" ]; then
  git -C ${REPO} checkout ${SOLEDAD_BRANCH}
fi

${CMD} soledad-client test --server-url ${SOLEDAD_SERVER_URL}