diff options
author | chenshuai@huawei.com <chenshuai@huawei.com> | 2016-02-27 02:08:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-02-27 02:08:33 +0000 |
commit | 94320b6ae2a0649275d52a17db866383fb6ac5fe (patch) | |
tree | 543f047e5591ac5fccd8fe939107659f29e3279f /deploy/deploy_host.sh | |
parent | 8dd2ec4c6893d7bf585ce78105379479ae065ba3 (diff) | |
parent | c846444991b2b691a0b01057ac2ecdd1dbbcca60 (diff) |
Merge "bugfix:remove openvswitch when enable opencontrail"
Diffstat (limited to 'deploy/deploy_host.sh')
-rwxr-xr-x | deploy/deploy_host.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/deploy_host.sh b/deploy/deploy_host.sh index 8e7997ef..2e2ec714 100755 --- a/deploy/deploy_host.sh +++ b/deploy/deploy_host.sh @@ -49,7 +49,7 @@ function deploy_host(){ RET=$? sleep $((AYNC_TIMEOUT+5)) - if [[ $RET ]]; then + if [[ $RET -eq 0 ]]; then /bin/true else /bin/false |