首页 > 其他分享 >ansible 修改/etc/hosts

ansible 修改/etc/hosts

时间:2022-09-27 16:23:30浏览次数:41  
标签:name 192.168 etc ansible hosts tml

1、编辑文件hosts.tml

vim hosts.tml

---
- hosts: 192.168.59.103
  remote_user: root

  tasks:
    - name: add hosts
      lineinfile: name=/etc/hosts line="192.168.59.103 www.test3.com"

2、验证

  ansible-playbook hosts.yml

 

标签:name,192.168,etc,ansible,hosts,tml
From: https://www.cnblogs.com/leihongnu/p/16734952.html

相关文章

  • ansible 安装jdk
    1、上传文件到ansible端上/data/jdk/jdk-8u341-linux-x64.tar.gz(下载地址:)2、编辑jdk.yml文件vimjdk.yml【----hosts:192.168.59.103 remote_user:root tasks......
  • 导出etcd中的kubernetes配置信息
    功能描述kubernetes的持久化机制是通过etcd实现的,即所有的配置信息会存储到etcd中。所以如果想要备份kubernetes中的集群配置信息,只要备份etcd的数据即可。本文将描述如何......
  • leetcode 617. Merge Two Binary Trees 合并二叉树(简单)
    一、题目大意给你两棵二叉树:root1和root2。想象一下,当你将其中一棵覆盖到另一棵之上时,两棵树上的一些节点将会重叠(而另一些不会)。你需要将这两棵树合并成一棵新二叉......
  • NetCoreWebApi3.0-------MiniProfiler使用教程
    参考博客:ASP.NETCoreWebAPI中的分析工具MiniProfiler-LamondLu-博客园(cnblogs.com) 注意事项:1.不要盲目copy别人的代码varhtml=MiniProfiler.Current.Re......
  • leetcode -- 链表 2
    leetcode链表专题23.合并K个升序链表普通归并排序+python迭代器classSolution:defmergeKLists(self,lists:List[Optional[ListNode]])->Optional[ListNo......
  • ansible 编译安装nginx
    1、准备安装包nginx-1.22.0.tar.gz(地址:https://nginx.org/download/)2、编写剧本vimnginx.yml【----hosts:192.168.59.103 remote_user:root tasks:  -n......
  • [Oracle] LeetCode 1290 Convert Binary Number in a Linked List to Integer
    Givenheadwhichisareferencenodetoasingly-linkedlist.Thevalueofeachnodeinthelinkedlistiseither0or1.Thelinkedlistholdsthebinaryrepr......
  • [Oracle] LeetCode 450 Delete Node in a BST
    GivenarootnodereferenceofaBSTandakey,deletethenodewiththegivenkeyintheBST.Returntherootnodereference(possiblyupdated)oftheBST.Ba......
  • leetcode -- 链表
    leetcode链表专题反转链表三指针+递归classSolution:defreverseList(self,head:Optional[ListNode])->Optional[ListNode]:defreverselist(......
  • LeetCode554 砖墙
    LeetCode554砖墙哈希classSolution:defleastBricks(self,wall:List[List[int]])->int:wall_len,cnt,m=sum(wall[0]),{},len(wall)......