aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/start-solo-tool.sh
blob: a546df2e53f1b17b9c8b685ac1b05b96239086c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/bash

# Wait until git server is reachable
until ping -c1 git.0xf7.com >/dev/null 2>&1; do :; done

# Get latest version
git pull

# Run web UI
ST_USER=$(cat $CREDENTIALS_DIRECTORY/st_user) ST_PASS=$(cat $CREDENTIALS_DIRECTORY/st_pass) make web-deploy