Commit 21a8026a authored by David Wilson's avatar David Wilson

issue #140: import reproduction

parent 8f859430
---
# Reproduction for issue #140.
- hosts: all
gather_facts: no
tasks:
- name: Create file tree
connection: local
shell: >
mkdir filetree;
for i in {1..1000} ; do touch filetree/$i ; done
args:
creates: filetree
- name: Delete remote file tree
shell: rm -rf /tmp/filetree
- name: Trigger nasty process pileup
synchronize:
src: "{{ item.src }}"
dest: "/tmp/filetree"
with_filetree:
- filetree
when: item.state == 'file'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment