blob: 4b362fac1922a2eb519cf2c33ca6fd08b7524f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#! /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
./scripts/fetch_os_creds.sh -d ./opnfv-creds.sh
|