Set verbose=True by default in quantum.conf

This updates the quantum submodule because of a recent change that
makes it preferable to set boolean values via native puppet
true/false instead of via strings like 'True'/'False'.

As a side effect, this update also fixes the use of log_file in
quantum.conf instead of log_dir.

Change-Id: I3b0a7662e9840fb580bcdfcd72dda8bd234d6804
This commit is contained in:
Terry Wilson
2013-05-29 17:45:03 -05:00
parent 0beb575244
commit 87f9937382
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ $quantum_user_password = '%(CONFIG_QUANTUM_KS_PW)s'
class { 'quantum': class { 'quantum':
rpc_backend => 'quantum.openstack.common.rpc.impl_qpid', rpc_backend => 'quantum.openstack.common.rpc.impl_qpid',
qpid_hostname => '%(CONFIG_QPID_HOST)s', qpid_hostname => '%(CONFIG_QPID_HOST)s',
verbose => true,
} }
class { 'quantum::server': class { 'quantum::server':