summaryrefslogtreecommitdiffstats
path: root/legacy/scripts
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2017-05-16 14:11:02 +0800
committerzhihui wu <wu.zhihui1@zte.com.cn>2017-05-16 14:11:02 +0800
commit6cf01ef2b8cff0412640b6cc87112852afee9c87 (patch)
treebdf60cf4af20470ba07000e55fbb36d2c3a5270c /legacy/scripts
parent1089daee7bbf76a1686b6e1f4fee8dc79b5b7968 (diff)
delete unuse code in directory legacy
Change-Id: I31427e8a59ea241e882f41222f211fffe709043f Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'legacy/scripts')
-rwxr-xr-xlegacy/scripts/cleanup_creds.sh11
-rwxr-xr-xlegacy/scripts/get_env_info.sh37
-rw-r--r--legacy/scripts/ssh_exch.exp9
3 files changed, 0 insertions, 57 deletions
diff --git a/legacy/scripts/cleanup_creds.sh b/legacy/scripts/cleanup_creds.sh
deleted file mode 100755
index b4eee924..00000000
--- a/legacy/scripts/cleanup_creds.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /bin/bash
-
-DEST_IP=$1
-HOSTNAME=$(hostname)
-sshoptions="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
-
-case "$INSTALLER_TYPE" in
- fuel)
- ssh $sshoptions -i ./config/QtipKey root@$DEST_IP "sed -i '/root@$HOSTNAME/d' /root/.ssh/authorized_keys"
- ;;
-esac
diff --git a/legacy/scripts/get_env_info.sh b/legacy/scripts/get_env_info.sh
deleted file mode 100755
index cd49ac87..00000000
--- a/legacy/scripts/get_env_info.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#! /bin/bash
-
-usage() {
- echo "usage $0 -n <installer_type> -i <installer_ip> -k <key incase of apex>"
-}
-
-
-
-while getopts ":n:i:k:" optchar; do
- case "${optchar}" in
- n)
- export INSTALLER_TYPE=${OPTARG};;
-
- i)
- export INSTALLER_IP=${OPTARG};;
-
- k)
- export APEX_KEY=${OPTARG};;
-
- *)
- echo "Incorrect usage"
- usage ;;
- esac
-done
-
-if [ $INSTALLER_TYPE == "apex" ]
- then
- if [ -z $APEX_KEY ]
- then
- echo "Please provide the the key to access the APEX Instack VM"
- usage
- exit 1
- fi
-fi
-
-
-${REPOS_DIR}/releng/utils/fetch_os_creds.sh -d ${QTIP_DIR}/opnfv-creds.sh
diff --git a/legacy/scripts/ssh_exch.exp b/legacy/scripts/ssh_exch.exp
deleted file mode 100644
index c52140b7..00000000
--- a/legacy/scripts/ssh_exch.exp
+++ /dev/null
@@ -1,9 +0,0 @@
-#1 /usr/bin/expect
-set timeout 4
-set ip [lindex $argv 0]
-set pswd [lindex $argv 1]
-spawn ssh-copy-id -i QtipKey $ip
-expect "Are you sure you want to continue connecting" {send "yes\r"}
-expect "password:" { send "$pswd\r"}
-
-interact