mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #701 from ceph/conf-fixes
look at monitor_interface in hostvars when choosing interface or addresspull/703/head
commit
8959ab1843
|
@ -99,7 +99,7 @@ host = {{ hostvars[host]['ansible_fqdn'] }}
|
||||||
[mon.{{ hostvars[host]['ansible_hostname'] }}]
|
[mon.{{ hostvars[host]['ansible_hostname'] }}]
|
||||||
host = {{ hostvars[host]['ansible_hostname'] }}
|
host = {{ hostvars[host]['ansible_hostname'] }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if monitor_interface != "interface" %}
|
{% if hostvars[host]['monitor_interface'] != "interface" %}
|
||||||
{% include 'mon_addr_interface.j2' %}
|
{% include 'mon_addr_interface.j2' %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include 'mon_addr_address.j2' %}
|
{% include 'mon_addr_address.j2' %}
|
||||||
|
|
Loading…
Reference in New Issue