标签:文件 copy 使用 together bsp lob des 递归 class
- hosts: woshi129 tasks: - name: copy /etc copy: src: "{{ item }}" dest: /root/ooo/ with_fileglob: - /data/ppp/* - name: combine command: echo "msg={{ item.0 }} and {{ item.1 }}" with_together: - [1,2,3] - [‘a‘,‘b‘]
with_fileglob: 将文件下所有的文件作为变量传输,但不是递归。
with_together: 列表组合形式传输变量
标签:文件 copy 使用 together bsp lob des 递归 class
原文地址:https://www.cnblogs.com/huangjinbin/p/8836646.html