network/salt/bind/dyn-domain.zone

14 lines
277 B
Dns
Raw Normal View History

2017-03-12 03:16:48 +01:00
$ORIGIN {{ domain }}.
$TTL 10M
2018-06-23 02:04:35 +02:00
@ IN SOA {{ pillar['bind']['master-ns']['up1'] }}. astro.spaceboyz.net. (
2018-06-26 22:46:35 +02:00
3 ; serial
2017-03-12 03:16:48 +01:00
1H ; refresh
1M ; retry
2H ; expire
5M ; minimum
)
2018-06-26 22:46:35 +02:00
{%- for ns in pillar['bind']['public-ns']['up1'] %}
2017-03-12 03:16:48 +01:00
IN NS {{ ns }}.
{%- endfor %}