diff options
Diffstat (limited to 'script/dev-configure.sh')
-rwxr-xr-x | script/dev-configure.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/dev-configure.sh b/script/dev-configure.sh index 72fb67ea..add9a96a 100755 --- a/script/dev-configure.sh +++ b/script/dev-configure.sh @@ -11,7 +11,7 @@ PATH="${GARAGE_DEBUG}:${GARAGE_RELEASE}:${NIX_RELEASE}:$PATH" sleep 5 RETRY=120 -until garage -c /tmp/config.1.toml status 2>&1|grep -q Healthy ; do +until garage -c /tmp/config.1.toml status 2>&1|grep -q HEALTHY ; do (( RETRY-- )) if (( RETRY <= 0 )); then echo "garage did not start in time, failing." @@ -22,7 +22,7 @@ until garage -c /tmp/config.1.toml status 2>&1|grep -q Healthy ; do done garage -c /tmp/config.1.toml status \ - | grep UNCONFIGURED \ + | grep 'NO ROLE' \ | grep -Po '^[0-9a-f]+' \ | while read id; do garage -c /tmp/config.1.toml node configure -z dc1 -c 1 $id |