sysstat.default.j2 should convert true and false to lower case
Bug #1546796 reported by
gdahlman
This bug report is a duplicate of:
Bug #1530979: evaluation issue inside openstack_hosts/sysstat.default.j2 template.
Edit
Remove
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
openstack-ansible |
New
|
Undecided
|
Unassigned |
Bug Description
openstack-
ENABLED="True" which is evaluated as not matching true thus is considered a false.
While it could be fixed in the config file it is probably better to just add the lower jinja filter
It is currently:
ENABLED="{{ openstack_
should be changed to:
ENABLED="{{ openstack_
To post a comment you must log in.
gdahlman, I checked version 12.0.5 and previous versions and they all have default value host_systat_ enabled: true
openstack_
with a comment saying that Valid values are "true" and "false".
can you explain further the problem?