aboutsummaryrefslogtreecommitdiffstats
path: root/get_env_info.sh
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2016-10-12 15:32:52 +0800
committerwu.zhihui <wu.zhihui1@zte.com.cn>2016-10-14 17:16:00 +0800
commiteddc35b497362c0c01e612d66ed19c4d5c9dd328 (patch)
tree9a9c792a002fce40782158b9d645e597d3606f1b /get_env_info.sh
parent975e241de4d4bf3839c788ad743d0cc077e23bd4 (diff)
Adjust directory structure
qtip ! +---- scripts ! ! ! +----ref_result # python scripts to generate results report ! +----fetch_compute_ips.sh ! +----fetch_os_creds.sh ! +----file_permission.sh ! +----get_env_info.sh ! +----qtip_creds.sh ! +----ssh_exch.exp ! +---- config ! ! ! +---- Qtip_key ! +---- Qtip_key.pub ! +---- SampleHeat.yaml ! +---- utils ! ! ! +---- logger_utils.py ! +---- report # generate pdf report file Change-Id: Ia908ff31494369c1a13fb88b1ff9b0e5681f8e29 Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'get_env_info.sh')
-rwxr-xr-xget_env_info.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/get_env_info.sh b/get_env_info.sh
deleted file mode 100755
index 2fb0d22b..00000000
--- a/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
-
-
-./data/fetch_os_creds.sh -d ./opnfv-creds.sh