In EHP and production, ansible generates .ini files from .yml files using a jinja template.
It produces "True" boolean value instead of "true" and "False" instead of "false".
Then, while parsing .ini file in systematic, json.parse() couldn't cast these values to boolean and keep them as string.
In EHP and production, ansible generates
.ini
files from.yml
files using a jinja template. It produces"True"
boolean value instead of"true"
and"False"
instead of"false"
. Then, while parsing.ini
file insystematic
,json.parse()
couldn't cast these values toboolean
and keep them asstring
.Solution: adding a
cast
function.