ansible-training-test/playbooks/tasks/copy_files.yml

8 lines
172 B
YAML
Raw Normal View History

2018-07-27 10:01:50 +02:00
- name: "Copy two files from {{ dir_src }} to {{ dir_dst }}"
copy:
src: "{{dir_src}}/{{item}}"
dest: "{{dir_dst}}/"
loop:
- "{{file01}}"
- "{{file02}}"