diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-29 17:03:08 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-29 17:03:19 +0100 |
commit | 3f18aa6f1def52d61a4fc3bbb667d1f0911665ed (patch) | |
tree | a82b16af13c0cac8bc558e66894b70cfee6dd35b /script/dev-configure.sh | |
parent | 07e87595f8c12a6e60c90b3eb11ab89d7f719420 (diff) | |
download | garage-3f18aa6f1def52d61a4fc3bbb667d1f0911665ed.tar.gz garage-3f18aa6f1def52d61a4fc3bbb667d1f0911665ed.zip |
Add a smoke test script
Diffstat (limited to 'script/dev-configure.sh')
-rwxr-xr-x | script/dev-configure.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/script/dev-configure.sh b/script/dev-configure.sh index 8b7392c6..698c7ed9 100755 --- a/script/dev-configure.sh +++ b/script/dev-configure.sh @@ -6,6 +6,11 @@ GARAGE_DEBUG="${REPO_FOLDER}/target/debug/" GARAGE_RELEASE="${REPO_FOLDER}/target/release/" PATH="${GARAGE_DEBUG}:${GARAGE_RELEASE}:$PATH" +until garage status 2>&1|grep -q Healthy ; do + echo "cluster starting..." + sleep 1 +done + garage status \ | grep UNCONFIGURED \ | grep -Po '^[0-9a-f]+' \ |