template file is o longer used

This commit is contained in:
Hyatt 2022-02-07 15:08:09 -06:00
parent ba892ce475
commit cea5b78c7b
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -1,23 +0,0 @@
{{- $domain := .Domain -}}
$TTL {{ or .TTL "1h" }}
@ IN SOA {{ $domain }}. {{ or .Email "domain-admin" }}. (
{{ or .Timestamp "0000000000" }} ; Serial
{{ or .Refresh "1h" }} ; Refresh
{{ or .Retry "30m" }} ; Retry
{{ or .Expire "1w" }} ; Expire
{{ or .Minimum "1h" }} ; Minimum
)
;
; Name Servers
;
{{- range .NameServers }}
IN NS {{ . }}.
{{- end }}
;
; Addresses
;
{{- range .BadDomains }}
{{ . }} IN CNAME blocked.{{ $domain }}.
{{- end }}