diff options
author | George Paraskevopoulos <geopar@intracom-telecom.com> | 2016-12-13 11:27:36 +0200 |
---|---|---|
committer | George Paraskevopoulos <geopar@intracom-telecom.com> | 2016-12-13 11:33:24 +0200 |
commit | 8b09f0ad06e5ae941fc497754cc5778fae9018de (patch) | |
tree | cac03d63b8b98805bbf001f41a81b35b11223149 /tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash | |
parent | cf27d8c61ee456fdd05f5e7d558bb8fadbff2fdc (diff) |
Introduce setup_scripts directory
JIRA: SFC-52
Move every setup script to a separate directory.
Change-Id: I99ea937a04d7580c7e85220091fe0c32213c587e
Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
Diffstat (limited to 'tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash')
-rwxr-xr-x | tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash b/tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash new file mode 100755 index 00000000..240353f5 --- /dev/null +++ b/tests/functest/odl-sfc/setup_scripts/server_presetup_CI.bash @@ -0,0 +1,13 @@ +#!/bin/bash +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 controller|awk '{print $10}' | head -1) +echo $ip + +sshpass -p r00tme scp $ssh_options delete.sh ${INSTALLER_IP}:/root +sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'scp '"$ip"':/root/tackerc .' +sshpass -p r00tme scp $ssh_options ${INSTALLER_IP}:/root/tackerc $BASEDIR |