Closed rubdos closed 6 years ago
icinga2-ansible-add-hosts/templates/object_logic.j2 always denotes
icinga2-ansible-add-hosts/templates/object_logic.j2
address = "{{ host_address }}"
This always imports the IPv4 ping command, even on an IPv6 only node. Dual stack is not supported thes way.
I am not sure how to solve this cleanly, and would like to ask some input!
you can try : {% host_address %} address = "{{host_address}}" {% endif %}
{% host_addreess6 %} address6 = "{{host_address6}}" {% endif %}
icinga2-ansible-add-hosts/templates/object_logic.j2
always denotesThis always imports the IPv4 ping command, even on an IPv6 only node. Dual stack is not supported thes way.
I am not sure how to solve this cleanly, and would like to ask some input!