Fix syntax error
authorDmitry Ilyin <dilyin@mirantis.com>
Mon, 23 May 2016 17:32:14 +0000 (20:32 +0300)
committerDmitry Ilyin <dilyin@mirantis.com>
Mon, 23 May 2016 17:33:47 +0000 (20:33 +0300)
'True' becomes a string in puppet3
and is a syntax error in puppet4.

Change-Id: I9b0be57f0889f22ccc5baf214eca3affc71ecb9e

manifests/expirer.pp

index 5168077468ef769484a10e343c2b9cdb01eac6c6..4e2ae5fda700adad268c2194024624a42e9f1f38 100644 (file)
@@ -42,7 +42,7 @@
 #
 
 class ceilometer::expirer (
-  $enable_cron = True,
+  $enable_cron = true,
   $minute      = 1,
   $hour        = 0,
   $monthday    = '*',