1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-09 09:57:23 +03:00

Fix for ticket #79

git-svn-id: http://svn.opennebula.org/one/trunk@401 3034c82b-c49b-4eb3-8279-a7acafdc01c0
This commit is contained in:
Constantino Vázquez Blanco 2009-03-12 16:57:25 +00:00
parent 9de8e4b3f8
commit 5d3f0c7654

View File

@ -35,5 +35,15 @@ export_rc_vars $DRIVERRC
# Go to ONE_LOCATION
cd $VAR_LOCATION
while getopts u:h:k:c: option $@
do
case $option in
u) export EC2_URL="$OPTARG";;
h) export EC2_HOME="$OPTARG";;
k) export EC2_PRIVATE_KEY="$OPTARG";;
c) export EC2_CERT="$OPTARG";;
esac
done
# Execute the actual MAD
execute_mad $*