1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Add RWTH provider (#1629)

* Add RWTH provider

* fix Owners order

* Reorganize RWTH Provider

* Fix staticcheck and code style issues

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
MisterErwin
2022-08-04 20:40:27 +02:00
committed by GitHub
parent ba747fa5a9
commit 7865e37c8f
14 changed files with 539 additions and 2 deletions

View File

@@ -148,12 +148,12 @@ func (z *ZoneGenData) generateZoneFileHelper(w io.Writer) error {
}
fmt.Fprintf(w, "%s%s%s\n",
prefix, formatLine([]int{10, 5, 2, 5, 0}, []string{name, ttl, "IN", typeStr, target}), comment)
prefix, FormatLine([]int{10, 5, 2, 5, 0}, []string{name, ttl, "IN", typeStr, target}), comment)
}
return nil
}
func formatLine(lengths []int, fields []string) string {
func FormatLine(lengths []int, fields []string) string {
c := 0
result := ""
for i, length := range lengths {