Add QUANTUM_ prefix for env used by quantum-debug
Fixes bug 1077204 from TEST_CONFIG_FILE to QUANTUM_TEST_CONFIG_FILE also fixes openstack-common style Change-Id: I03d386dd5fc28d91ef496aecb1b93ddb4f4a810d
This commit is contained in:
parent
f8c8f53b37
commit
2c0637fffc
@ -1,5 +1,5 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
# The list of modules to copy from openstack-common
|
# The list of modules to copy from openstack-common
|
||||||
modules=cfg,context,eventlet_backdoor,exception,excutils,fileutils,gettextutils,lockutils,importutils,iniparser,jsonutils,local,log,loopingcall,network_utils,notifier,policy,rpc,service,setup,threadgroup,timeutils,uuidutils,version
|
modules=cfg,context,eventlet_backdoor,exception,excutils,fileutils,gettextutils,importutils,iniparser,jsonutils,local,lockutils,log,loopingcall,network_utils,notifier,policy,rpc,service,setup,threadgroup,timeutils,uuidutils,version
|
||||||
# The base module to hold the copy of openstack.common
|
# The base module to hold the copy of openstack.common
|
||||||
base=quantum
|
base=quantum
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
Debug Helper Script for Quantum
|
Debug Helper Script for Quantum
|
||||||
|
|
||||||
- Configure
|
- Configure
|
||||||
export TEST_CONFIG_FILE=/etc/quantum/debug.ini
|
export QUANTUM_TEST_CONFIG_FILE=/etc/quantum/debug.ini
|
||||||
or
|
or
|
||||||
export TEST_CONFIG_FILE=/etc/quantum/l3_agent.ini
|
export QUANTUM_TEST_CONFIG_FILE=/etc/quantum/l3_agent.ini
|
||||||
|
|
||||||
you can also specify config file by --config-file option
|
you can also specify config file by --config-file option
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ class QuantumDebugShell(QuantumShell):
|
|||||||
description, version)
|
description, version)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--config-file',
|
'--config-file',
|
||||||
default=env('TEST_CONFIG_FILE'),
|
default=env('QUANTUM_TEST_CONFIG_FILE'),
|
||||||
help='Config file for interface driver '
|
help='Config file for interface driver '
|
||||||
'(You may also use l3_agent.ini)')
|
'(You may also use l3_agent.ini)')
|
||||||
return parser
|
return parser
|
||||||
@ -67,7 +67,7 @@ class QuantumDebugShell(QuantumShell):
|
|||||||
if not self.options.config_file:
|
if not self.options.config_file:
|
||||||
raise exc.CommandError(
|
raise exc.CommandError(
|
||||||
"You must provide a config file for bridge -"
|
"You must provide a config file for bridge -"
|
||||||
" either --config-file or env[TEST_CONFIG_FILE]")
|
" either --config-file or env[QUANTUM_TEST_CONFIG_FILE]")
|
||||||
client = self.client_manager.quantum
|
client = self.client_manager.quantum
|
||||||
cfg.CONF.register_opts(interface.OPTS)
|
cfg.CONF.register_opts(interface.OPTS)
|
||||||
cfg.CONF.register_opts(QuantumDebugAgent.OPTS)
|
cfg.CONF.register_opts(QuantumDebugAgent.OPTS)
|
||||||
|
Loading…
Reference in New Issue
Block a user