码迷,mamicode.com
首页 > 其他好文 > 详细

Ansible 模块使用

时间:2018-04-15 11:40:17      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:文件   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: 列表组合形式传输变量

Ansible 模块使用

标签:文件   copy   使用   together   bsp   lob   des   递归   class   

原文地址:https://www.cnblogs.com/huangjinbin/p/8836646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!