From 5e2c4eb494562bdb7cfdb04a68d42bd992aa12c2 Mon Sep 17 00:00:00 2001 From: Francesco Vollero Date: Wed, 11 Sep 2013 00:44:29 +0200 Subject: [PATCH] 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 --- packstack/puppet/templates/ceilometer.pp | 2 +- packstack/puppet/templates/heat.pp | 2 +- packstack/puppet/templates/heat_cfn.pp | 2 +- packstack/puppet/templates/heat_cloudwatch.pp | 2 +- packstack/puppet/templates/nova_ceilometer.pp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packstack/puppet/templates/ceilometer.pp b/packstack/puppet/templates/ceilometer.pp index a0a2d2df1..44b152f35 100644 --- a/packstack/puppet/templates/ceilometer.pp +++ b/packstack/puppet/templates/ceilometer.pp @@ -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': diff --git a/packstack/puppet/templates/heat.pp b/packstack/puppet/templates/heat.pp index f9c82b365..5ec78fe7c 100644 --- a/packstack/puppet/templates/heat.pp +++ b/packstack/puppet/templates/heat.pp @@ -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": diff --git a/packstack/puppet/templates/heat_cfn.pp b/packstack/puppet/templates/heat_cfn.pp index c4afe0066..e39e144e0 100644 --- a/packstack/puppet/templates/heat_cfn.pp +++ b/packstack/puppet/templates/heat_cfn.pp @@ -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": diff --git a/packstack/puppet/templates/heat_cloudwatch.pp b/packstack/puppet/templates/heat_cloudwatch.pp index 8ea6ceec5..0f25fe957 100644 --- a/packstack/puppet/templates/heat_cloudwatch.pp +++ b/packstack/puppet/templates/heat_cloudwatch.pp @@ -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": diff --git a/packstack/puppet/templates/nova_ceilometer.pp b/packstack/puppet/templates/nova_ceilometer.pp index 5ee10b023..e780141bc 100644 --- a/packstack/puppet/templates/nova_ceilometer.pp +++ b/packstack/puppet/templates/nova_ceilometer.pp @@ -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':