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

8 lines
160 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:
2018-07-27 11:24:52 +02:00
src: "{{item}}"
2018-07-27 10:01:50 +02:00
dest: "{{dir_dst}}/"
loop:
- "{{file01}}"
- "{{file02}}"