Ansible 模块使用
Posted huangjinbin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible 模块使用相关的知识,希望对你有一定的参考价值。
- 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: 列表组合形式传输变量
以上是关于Ansible 模块使用的主要内容,如果未能解决你的问题,请参考以下文章