diff options
Diffstat (limited to 'get_env_info.sh')
-rwxr-xr-x | get_env_info.sh | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/get_env_info.sh b/get_env_info.sh index 6a4dd530..2fb0d22b 100755 --- a/get_env_info.sh +++ b/get_env_info.sh @@ -1,22 +1,37 @@ #! /bin/bash usage() { - echo "usage $0 -n <installer_type> -i <installer_ip>" + echo "usage $0 -n <installer_type> -i <installer_ip> -k <key incase of apex>" } -while getopts ":n:i:" optchar; do +while getopts ":n:i:k:" optchar; do case "${optchar}" in n) - export INSTALLER_TYPE=${OPTARG};; + 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 |