ansible IP

问题解决了,用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}}"
原文地址:https://www.cnblogs.com/gaoyuechen/p/9077161.html