首页 > 其他 > 详细

批量修改主机名 ansible

时间:2020-10-07 21:38:05      阅读:42      评论:0      收藏:0      [点我收藏+]
修改cat /etc/ansible/hosts

[test]
10.27.235.108 host_name=test_host_name

  • hosts: test
    user: root
    gather_facts: true
    tasks:
  • name: rsync dir filebeat
    hostname: ‘name={{ host_name }}‘
  • name: "add line"
    lineinfile:
    dest: /etc/hosts
    line: "{{ ansible_all_ipv4_addresses[0] }} {{ host_name }}"

批量修改主机名 ansible

原文:https://blog.51cto.com/13420391/2540302

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!