---
- name: copymore
hosts: test
tasks:
- name: copytest
copy:
src: "{{ item }}"
dest:/home
#with_fileglob循环
with_fileglob:
#源地址匹配
- /etc/yum.repos.d/epel*
with_file 是将每一个文件的文件内容做为item的值
with_fileglob 是将每一个文件的全路径做为item的值, 在文件目录下是非递归的