allow overrides for all params

This commit is contained in:
Anthony Young 2011-10-20 13:09:39 -07:00
parent d4ddf3da2d
commit d81ed0316f
1 changed files with 3 additions and 3 deletions

6
openrc
View File

@ -32,10 +32,10 @@ export NOVA_URL=${NOVA_URL:-http://$HOST:5000/v2.0/}
# Currently novaclient needs you to specify the *compute api* version. This
# needs to match the config of your catalog returned by Keystone.
export NOVA_VERSION=1.1
export NOVA_VERSION=${NOVA_VERSION:-1.1}
# FIXME - why does this need to be specified?
export NOVA_REGION_NAME=RegionOne
export NOVA_REGION_NAME=${NOVA_REGION_NAME:-RegionOne}
# set log level to DEBUG (helps debug issues)
export NOVACLIENT_DEBUG=1
export NOVACLIENT_DEBUG=${NOVACLIENT_DEBUG:-0}