Changing the debug flag to false for modules heat and ceilometer

This patch is needed to remove the debug flag from heat and ceilometer
installations.

The debug flag could be needed in the testing phase but should not be
enabled by default on the production installation, due to sensitive
data.

Change-Id: I9007dc3029c8f80b46b6764e4583baf102bfdedb
This commit is contained in:
Francesco Vollero 2013-09-11 00:44:29 +02:00
parent 53e488f310
commit 5e2c4eb494
5 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ class { 'ceilometer':
qpid_hostname => '%(CONFIG_QPID_HOST)s',
rpc_backend => 'ceilometer.openstack.common.rpc.impl_qpid',
verbose => true,
debug => true,
debug => false,
}
class { 'ceilometer::db':

View File

@ -6,7 +6,7 @@ class { 'heat':
rpc_backend => 'heat.openstack.common.rpc.impl_qpid',
qpid_hostname => '%(CONFIG_QPID_HOST)s',
verbose => true,
debug => true
debug => false
}
class {"heat::db":

View File

@ -6,7 +6,7 @@ class { 'heat':
rpc_backend => 'heat.openstack.common.rpc.impl_qpid',
qpid_hostname => '%(CONFIG_QPID_HOST)s',
verbose => true,
debug => true
debug => false
}
class {"heat::db":

View File

@ -6,7 +6,7 @@ class { 'heat':
rpc_backend => 'heat.openstack.common.rpc.impl_qpid',
qpid_hostname => '%(CONFIG_QPID_HOST)s',
verbose => true,
debug => true
debug => false
}
class {"heat::db":

View File

@ -4,7 +4,7 @@ class { 'ceilometer':
qpid_hostname => '%(CONFIG_QPID_HOST)s',
rpc_backend => 'ceilometer.openstack.common.rpc.impl_qpid',
verbose => true,
debug => true,
debug => false
}
class { 'ceilometer::agent::compute':