From 55f17d53f2f90fb019d35af8a27d57544fd581c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathieu=20Gagne=CC=81?= Date: Fri, 9 Aug 2013 15:50:41 -0400 Subject: [PATCH] Use Puppet boolean for better consistency Change-Id: I894af9499f1ea2fc255aa62fa6522c04a32d8a7c --- manifests/init.pp | 4 ++-- manifests/keystone/auth.pp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 6048764..8962561 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -48,8 +48,8 @@ class ceilometer( $metering_secret = false, $package_ensure = 'present', - $verbose = 'False', - $debug = 'False', + $verbose = false, + $debug = false, $rpc_backend = 'ceilometer.openstack.common.rpc.impl_kombu', $rabbit_host = '127.0.0.1', $rabbit_port = 5672, diff --git a/manifests/keystone/auth.pp b/manifests/keystone/auth.pp index 68f1732..ddf79c9 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -41,7 +41,7 @@ # Protocol for public endpoint. Optional. Defaults to 'http'. # class ceilometer::keystone::auth ( - $password = false, + $password = false, $email = 'ceilometer@localhost', $auth_name = 'ceilometer', $service_type = 'metering', -- 2.45.2