I am new to Ansible and have the following questions, if I have the following conditional, what is going to be parsed first, the filter or the not, were foo is a boolean variable True or False?
when: not foo | bool Are the following expressions the same? when: not foo | bool is the same as when: not (foo | bool) -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/32816a30-c87b-46c6-99c3-6eaa90789eeb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
