Skip to content

Commit 39df0e5

Browse files
committed
fixup! Fix ceph bind if ceph_ip_address is given
1 parent 6823795 commit 39df0e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/ceph/templates/ceph.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public_network = {{ ceph_network_public }}
1313
private_network = {{ ceph_network_private }}
1414
{% endif %}
1515
auth allow insecure global id reclaim = false
16-
{% if ceph_ip_address | default(ansible_default_ipv6['address']) | ipv6 %}
16+
{% if ceph_ip_address | default(ansible_default_ipv6['address'] | default(''), true) | ansible.utils.ipv6 %}
1717
ms bind ipv6 = true
1818
ms bind ipv4 = false
1919
{% else %}

0 commit comments

Comments
 (0)