Remove hostname from 127.0.0.1
We need this hostname to resolve to api_interface. Change-Id: Ie66c1abc2d5a16c56cb5b83e48787efd5bf54fc3 Closes-Bug: #1634910
This commit is contained in:
parent
520ac1823c
commit
34c7d15f2e
@ -7,20 +7,16 @@
|
||||
- name: Gather facts
|
||||
setup:
|
||||
|
||||
- name: Get node hostname
|
||||
shell: echo $(hostname)
|
||||
register: node_hostname
|
||||
|
||||
- name: Update /etc/hosts with hostname
|
||||
- name: Ensure localhost in /etc/hosts
|
||||
lineinfile:
|
||||
dest: /etc/hosts
|
||||
regexp: "127.0.0.1 {{ node_hostname.stdout }} localhost"
|
||||
line: "127.0.0.1 {{ node_hostname.stdout }} localhost"
|
||||
regexp: "^127.0.0.1.*"
|
||||
line: "127.0.0.1 localhost"
|
||||
state: present
|
||||
become: True
|
||||
when: customize_etc_hosts | bool == True
|
||||
|
||||
- name: Generate /etc/hosts
|
||||
- name: Generate /etc/hosts for all of the nodes
|
||||
blockinfile:
|
||||
dest: /etc/hosts
|
||||
marker: "# {mark} ANSIBLE GENERATED HOSTS"
|
||||
|
Loading…
Reference in New Issue
Block a user