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 模块使用的主要内容,如果未能解决你的问题,请参考以下文章

使用 find (ansible) 模块读取多数组

python代码调用ansible

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

ansible配置文件ansible.cfg详解

在ansible模板中使用动态组名称

ansible使用笔记(二)常用命令使用及常用模块简介