各位大蝦好!
小弟遇到一個問題,就是需要把約100台機器的zk 進行調整,目前在ansible控制機上已經寫好了新的zk ip,然後計劃是把這個新zk ip的文件下發到那100台機器裡,然後這100台機器的檔案中把他們各自的ip和hostname加到這個檔案上。
於是小弟就寫了一個ansible-playbook:
---
- hosts: all
tasks:
- name: 将原有的hosts文件备份
shell: mv /etc/hosts /etc/hosts_bak
- name: 将ansible端的hosts复制到各自机器上
copy: src=/root/hosts dest=/etc/ owner=root group=root mode=0544
- name: 在新的hosts文件后面追加各自机器内网ip和hostname
lineinfile: dest=/etc/hosts line="{{ansible_all_ipv4_addresses}} {{ansible_hostname}}"
但是寫完之後執行出來,卻是這樣的效果:
#而我想要的是這樣的效果:
請問如何是好?
漂亮男人2017-05-18 10:58:00
問題解決了,用IP: "{{ ansible_eth0'ipv4' }}" 而不是{{ansible_all_ipv4_addresses}}
修改了之後的playbook 如下:
---
- hosts: all
vars:
IP: "{{ ansible_eth0['ipv4']['address'] }}"
tasks:
- name: 将原有的hosts文件备份
shell: mv /etc/hosts /etc/hosts_bak
- name: 将ansible端的hosts复制到各自机器上
copy: src=/root/hosts dest=/etc/ owner=root group=root mode=0644
- name: 在新的hosts文件后面追加各自机器内网ip和hostname
lineinfile: dest=/etc/hosts line="{{IP}} {{ansible_hostname}}"