bug_fix tc045 ssh error caused by no id_rsa key file 43/17843/1
authorrexlee8776 <limingjiang@huawei.com>
Sat, 30 Jul 2016 02:23:29 +0000 (02:23 +0000)
committerrexlee8776 <limingjiang@huawei.com>
Sat, 30 Jul 2016 02:23:29 +0000 (02:23 +0000)
this patch fetch id_rsa when prepare the env

JIRA: YARDSTICK-312

Change-Id: I9f172c4ec87a47143a63607dcb4725b86016605a
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
tests/ci/prepare_env.sh

index 723a04a..35118b1 100755 (executable)
@@ -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
+