From d81ed0316f8932a380af569fd0d7ecbb3fca391c Mon Sep 17 00:00:00 2001 From: Anthony Young Date: Thu, 20 Oct 2011 13:09:39 -0700 Subject: [PATCH] allow overrides for all params --- openrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openrc b/openrc index e45b8fdb49..b79962a0d2 100644 --- a/openrc +++ b/openrc @@ -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}