adds ne lines

This commit is contained in:
Hyatt 2022-02-07 16:07:35 -06:00
parent 18e3b0844c
commit aa0006f8e5
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,8 @@ $TTL {{ or .TTL "1h" }}
;
{{- range .BlockedDomains }}
{{ . }} IN CNAME blocked.{{ $domain }}.
{{- end }}`
{{- end }}
`
t, err := template.New("response-policy-zone").Parse(outputTemplate)
if err != nil {

View File

@ -66,6 +66,8 @@ func getData(urls []string) []byte {
log.Printf("[ERROR] Unable to get remote content from URL (%s): %v", u, err)
}
listData = append(listData, data...)
// add newline to the end of data, you know, for funzies
listData = append(listData, '\n')
}
return listData