diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-01-07 19:22:18 +0100 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-01-07 19:42:59 +0100 |
commit | 717cb4e0f8d9e430eb31ba643f95682f1592e509 (patch) | |
tree | 05d4ff18a7f3e605110753f7beaee2b1ef9bd028 /mcp | |
parent | 2bbab1873ef629e89ac92ec195feb15b86cf8295 (diff) |
lib.sh: Fix stop condition in wait_for
Change-Id: Ida693b6dd328db283d6992ac33500f4dd1a73eb8
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'mcp')
-rw-r--r-- | mcp/scripts/lib.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mcp/scripts/lib.sh b/mcp/scripts/lib.sh index e9dd30960..aebf97055 100644 --- a/mcp/scripts/lib.sh +++ b/mcp/scripts/lib.sh @@ -437,7 +437,7 @@ function wait_for { local total_attempts=$1; shift local cmdstr=$* local sleep_time=10 - echo "[wait_for] Waiting for cmd to return success: ${cmdstr}" + echo -e "\n[wait_for] Waiting for cmd to return success: ${cmdstr}" # shellcheck disable=SC2034 for attempt in $(seq "${total_attempts}"); do echo "[wait_for] Attempt ${attempt}/${total_attempts%.*} for: ${cmdstr}" @@ -445,11 +445,11 @@ function wait_for { # shellcheck disable=SC2015 eval "${cmdstr}" && echo "[wait_for] OK: ${cmdstr}" && return 0 || true else - ( eval "${cmdstr}" || echo __fuel_wf_failure__ ) |& tee /dev/stderr | \ - grep -Eq '(Not connected|No response|__fuel_wf_failure__)' || \ - echo "[wait_for] OK: ${cmdstr}" && return 0 + !(eval "${cmdstr}" || echo __fuel_wf_failure__) |& tee /dev/stderr | \ + grep -Eq '(Not connected|No response|__fuel_wf_failure__)' && \ + echo "[wait_for] OK: ${cmdstr}" && return 0 || true fi - echo -n '.'; sleep "${sleep_time}" + sleep "${sleep_time}" done echo "[wait_for] ERROR: Failed after max attempts: ${cmdstr}" return 1 |