Ansible infile模块

Posted vincenshen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible infile模块相关的知识,希望对你有一定的参考价值。

lineinfile 向文本中添加单行

blockinfile 向文本中添加多行

---
- name: lineinfile
  hosts: dev
  tasks:
    - name: lineinfile
      lineinfile:
        path: /tmp/test.txt
        line: Add this line to the file
        state: present
- name: blockinfile blockinfile: path: /tmp/test.txt block: | One night in beijing Two night in shanghai state: present

 

以上是关于Ansible infile模块的主要内容,如果未能解决你的问题,请参考以下文章

Ansible常用模块

python代码调用ansible

ansible配置文件ansible.cfg详解

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

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

Ansible中安装模块出错