blob: 95d2b8542f255fe88d02f7f12292b626df117fe0 (
plain)
1
2
3
4
5
6
7
8
9
|
{% for meshpoint in mesh.values() %}
# {{ meshpoint.domain }}
{% for record in meshpoint.private_records %}
{% if record["type"] == "A" %}
local-data: "{{ record['name'] }}. A {{ record['ip'] }}"
{% endif %}
{% endfor %}
{% endfor %}
|