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

Ansible infile模块

时间:2020-04-01 17:53:41      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:res   test   path   hang   单行   code   one   state   color   

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模块

标签:res   test   path   hang   单行   code   one   state   color   

原文地址:https://www.cnblogs.com/vincenshen/p/12614146.html

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