From 79aef841af8ea502031d105ce7cf04818ed54a61 Mon Sep 17 00:00:00 2001 From: Dmitry Ilyin Date: Mon, 23 May 2016 20:32:14 +0300 Subject: [PATCH] Fix syntax error 'True' becomes a string in puppet3 and is a syntax error in puppet4. Change-Id: I9b0be57f0889f22ccc5baf214eca3affc71ecb9e --- manifests/expirer.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/expirer.pp b/manifests/expirer.pp index 5168077..4e2ae5f 100644 --- a/manifests/expirer.pp +++ b/manifests/expirer.pp @@ -42,7 +42,7 @@ # class ceilometer::expirer ( - $enable_cron = True, + $enable_cron = true, $minute = 1, $hour = 0, $monthday = '*', -- 2.45.2