Merge pull request #76 from rackn/dns-ip

Use IP is specified, otherwise use the ansible discovered address.
pull/77/merge
Antoine Legrand 2016-01-20 15:46:27 +01:00
commit 9156d1ecfd
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
- name: populate inventory into hosts file
lineinfile:
dest: /etc/hosts
regexp: "^{{ hostvars[item].ansible_default_ipv4.address }} {{ item }}$"
line: "{{ hostvars[item].ansible_default_ipv4.address }} {{ item }}"
regexp: "^{{ hostvars[item]['ip'] | default(hostvars[item].ansible_default_ipv4.address) }} {{ item }}$"
line: "{{ hostvars[item]['ip'] | default(hostvars[item].ansible_default_ipv4.address) }} {{ item }}"
state: present
backup: yes
when: hostvars[item].ansible_default_ipv4.address is defined