aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/setup_scripts/compute_presetup_CI.bash
diff options
context:
space:
mode:
authorBrady Johnson <bjohnson@inocybe.com>2019-03-19 13:16:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-03-19 13:16:59 +0000
commit7e42185599ce6c8ff5bec165fc8950e8cf89dc5b (patch)
tree5ab22dcaa46981d9c61b48bcb4f81ec2a2c80e8b /sfc/tests/functest/setup_scripts/compute_presetup_CI.bash
parent50ad0d757b2015067c2b13adbbe59b746477b207 (diff)
parent1073b3038dad0bb3adc8cfdd441f80ca56f2c10a (diff)
Merge "Remove set_scripts directory"
Diffstat (limited to 'sfc/tests/functest/setup_scripts/compute_presetup_CI.bash')
-rw-r--r--sfc/tests/functest/setup_scripts/compute_presetup_CI.bash27
1 files changed, 0 insertions, 27 deletions
diff --git a/sfc/tests/functest/setup_scripts/compute_presetup_CI.bash b/sfc/tests/functest/setup_scripts/compute_presetup_CI.bash
deleted file mode 100644
index 36148aa1..00000000
--- a/sfc/tests/functest/setup_scripts/compute_presetup_CI.bash
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-# This script must be use with vxlan-gpe + nsh. Once we have eth + nsh support
-# in ODL, we will not need it anymore
-
-set -e
-ssh_options='-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
-BASEDIR=`dirname $0`
-INSTALLER_IP=${INSTALLER_IP:-10.20.0.2}
-
-pushd $BASEDIR
-#ip=`sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'fuel node'|grep compute|\
-#awk '{print $10}' | head -1`
-
-ip=$1
-echo $ip
-#sshpass -p r00tme scp $ssh_options correct_classifier.bash ${INSTALLER_IP}:/root
-#sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'scp correct_classifier.bash '"$ip"':/root'
-
-sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'ssh root@'"$ip"' ifconfig br-int up'
-output=$(sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'ssh root@'"$ip"' ip route | \
-cut -d" " -f1 | grep 11.0.0.0' ; exit 0)
-
-if [ -z "$output" ]; then
-sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'ssh root@'"$ip"' ip route add 11.0.0.0/24 \
-dev br-int'
-fi