first, this conditional is wrong:
`when:  "{{ ansible_architecture }} == 64-bit"`

should be:
`when:  ansible_architecture == "64-bit"

alos you can just do:


src: "{{ (ansible_architecture == '32-bit')|ternary('phoenix_x86',
'phoenix_x64') }}"


-- 
----------
Brian Coca

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-devel/CACVha7d8a%2BT218UcT4sovZVTfkJzXhF8f2Cn5DfBD01q-SU64A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to