11 lines
404 B
Plaintext
11 lines
404 B
Plaintext
|
NS {{ server.hostname }}.
|
||
|
{% for satellite in satellites %}
|
||
|
NS {{ satellite.hostname }}.
|
||
|
{% endfor %}
|
||
|
{% for record in mx_records %}
|
||
|
MX{% if record.opts is defined %} {{ record.opts }}{% endif %} {{ record.value }}
|
||
|
{% endfor %}
|
||
|
{% for record in records %}
|
||
|
{{ record.name }} IN {{ record.type }}{% if record.opts is defined %} {{ record.opts }}{% endif %} {{ record.value }}
|
||
|
{% endfor %}
|