diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-01-10 13:34:47 -0800 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-01-10 21:35:59 +0000 |
commit | 454fa9c81219d79636cedf73b819924c970dc7eb (patch) | |
tree | cadd672bcd4459a5f197cbedcebd65c1f4d6a431 | |
parent | 6ed47a473114ccc9b2644293ac945490ebce65a9 (diff) |
Use ubuntu instead of root to check for docker
Change-Id: I91913bd00eceb604e0e58855d779835bb83d0563
Issue-ID: INT-278
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
(cherry picked from commit 86fb15976b3370667c93d3141bed7dd518e3b69e)
-rwxr-xr-x | test/ete/scripts/deploy-onap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ete/scripts/deploy-onap.sh b/test/ete/scripts/deploy-onap.sh index 571b380d1..6f9ad1034 100755 --- a/test/ete/scripts/deploy-onap.sh +++ b/test/ete/scripts/deploy-onap.sh @@ -81,7 +81,7 @@ ssh-keygen -R ${ROBOT_IP} SSH_KEY=~/.ssh/onap_key -until ssh -o StrictHostKeychecking=no -i ${SSH_KEY} root@${ROBOT_IP} "docker ps | grep -q openecompete_container" +until ssh -o StrictHostKeychecking=no -i ${SSH_KEY} ubuntu@${ROBOT_IP} "docker ps | grep -q openecompete_container" do sleep 2m done |