Howdy, all --
This works well until I try to use a module accepting "free-form" arguments, such as the command or shell modules. (I prefer to use this syntax in such cases to avoid ambiguity around whether arguments containing the literal '=' character are intended to be parsed by Ansible or by the shell being invoked).
For instance, although
http://docs.ansible.com/shell_module.html describes a "free_form" argument as being the appropriate place to pass the actual command to be run, I'm seeing the following behavior in practice:
action: shell
args:
free_form: echo hello_world >/tmp/something
creates: /tmp/something
...runs the following:
/bin/sh -c " free_form='echo hello_world >/tmp/something' "
...which is very much not the intent. What's the right way to pass a free-form argument when using the complex-args form?