puppet-oslo/releasenotes/notes/ensure-log-debug-is-boolean-ca20c1b14f5774e7.yaml
Alex Schultz 70816f417a Ensure debug is a boolean
Use any2bool when the debug value for logging is not the class defaults
to ensure that we pass a true boolean to the configuration file.

Change-Id: Ica3cbb2ca6b1168a49448ace1a38c96d95cdcd88
Closes-Bug: #1719929
2017-09-27 22:00:13 +00:00

12 lines
433 B
YAML

---
upgrade:
- |
Bump minimum version of puppetlabs-stdlib to 4.13.0 as we are using the
any2bool function.
fixes:
- |
oslo.log fails if the debug setting is the configuration file is not a
boolean. So we've added boolean conversion to the setting to ensure that
we are either passing a proper boolean or $::os_service_default. We are
leveraging puppetlabs-stdlib any2bool for the conversion. LP#1719929