On Tue, Dec 9, 2014 at 3:35 PM, Matt Hughes <
hughe...@gmail.com> wrote:
> Using 1.7.3. I don't quote false or true anywhere; just using literal value.
>
It's probably the bug Michael mentions. Due to playbooks going
through both yaml and jinja and sometimes variabels going through
jinja multiple times, things sometimes end up as strings instead of
the value you expect. One workaround that helps in many cases is to
use the jinja bool filter:
useCopyA|bool
-Toshio