diff options
author | liang gao <jean.gaoliang@huawei.com> | 2016-07-30 07:18:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-30 07:18:19 +0000 |
commit | e69a79aa8242bda326567e8ae514bd9acdcca91b (patch) | |
tree | 9c2fb56c2a967fd927aad6153e2931f3631e085a | |
parent | a2ba9d0d6d2e44dcfeb7693bd0e4f728d5076f13 (diff) | |
parent | 76d0e5f0cfcf016d0c1d78f50c059b01474af14c (diff) |
Merge "bug_fix tc045 ssh error caused by no id_rsa key file"
-rwxr-xr-x | tests/ci/prepare_env.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ci/prepare_env.sh b/tests/ci/prepare_env.sh index 723a04aa1..35118b12c 100755 --- a/tests/ci/prepare_env.sh +++ b/tests/ci/prepare_env.sh @@ -55,3 +55,28 @@ export EXTERNAL_NETWORK INSTALLER_TYPE DEPLOY_TYPE NODE_NAME # Prepare a admin-rc file for StorPerf integration $YARDSTICK_REPO_DIR/tests/ci/prepare_storperf_admin-rc.sh + +# Fetching id_rsa file from jump_server..." +verify_connectivity() { + local ip=$1 + echo "Verifying connectivity to $ip..." + for i in $(seq 0 10); do + if ping -c 1 -W 1 $ip > /dev/null; then + echo "$ip is reachable!" + return 0 + fi + sleep 1 + done + error "Can not talk to $ip." +} + +ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" + +if [ "$INSTALLER_TYPE" == "fuel" ]; then + #ip_fuel="10.20.0.2" + verify_connectivity $INSTALLER_IP + echo "Fetching id_rsa file from jump_server $INSTALLER_IP..." + sshpass -p r00tme scp 2>/dev/null $ssh_options \ + root@${INSTALLER_IP}:~/.ssh/id_rsa /root/.ssh/id_rsa &> /dev/null +fi + |