hello,

I believe that issue https://github.com/ansible/ansible/issues/13763 still 
isn't resolved as I am experiencing it currently.
I am using version 2.0.0.2

Here is an example script that will cause the same error message as in the 
issue above
---
- hosts: 127.0.0.1
  connection: local
  become: yes
  become_method: sudo
  tasks:
    - file: name=/tmp/tempFile.txt state=touch

    - name: test loops are broken
      copy: remote_src=yes dest={{ item.dest }} src={{ item.src }}
      with_items:
        - { dest: "/tmp/foo.txt", src: "/tmp/tempFile.txt" }
        - { dest: "/tmp/bar.txt", src: "/tmp/tempFile.txt" }

thanks
John

-- 
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 ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/8e6f898d-ce72-4294-a13d-f032462b8e13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to