diff options
Diffstat (limited to 'test-apis-ci/sdc-api-tests')
-rw-r--r-- | test-apis-ci/sdc-api-tests/startup.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test-apis-ci/sdc-api-tests/startup.sh b/test-apis-ci/sdc-api-tests/startup.sh index 349741c353..80faeeac2e 100644 --- a/test-apis-ci/sdc-api-tests/startup.sh +++ b/test-apis-ci/sdc-api-tests/startup.sh @@ -6,9 +6,12 @@ chef-solo -c solo.rb -E ${ENVNAME} rc=$? if [[ $rc != 0 ]]; then - echo "Sanity failed !!!" + echo "Startup failed !!!" exit $rc else - echo "completed successfully :-)" - exit 0 -fi
\ No newline at end of file +# Note that the output below is monitored in CSIT by +# sdc/sdc-os-chef/scripts/docker_run.sh +# If this text is changed, docker_run.sh check for sdc-api-tests docker +# startup must be adjusted accordingly! + echo "Startup completed successfully" +fi |