Hi there,
A task that shoud skip is running and failing. This is the task
- name: Fail if project_subtree_path is set incorrectly
fail:
msg: “subtree is set to ‘{{ project_subtree_path }}’ but that path does not exist in the repo. Editsubtree_path
for ‘{{ site }}’ insites.yml
.”
when: project_subtree_path != ‘False’ and not project_subtree_full_path.stat.exists
And the error message indicates that the variable is indeed set to ‘False’
FAILED! => {“changed”: false, “failed”: true, “msg”: “subtree is set to ‘False’ but that path does not exist in the repo. Edit
subtree_path
for ‘sobiranialimentariapv.org’ insites.yml
.”}
Am I missing something on the 2.0 way of doing when?
I am running 2.0.0.1 on ubuntu 14.04
Thanks in advance