mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-24 15:43:08 +08:00
Tidy: Sort lists
This commit is contained in:
parent
e657693a32
commit
b19074e6dc
3 changed files with 5 additions and 5 deletions
|
@ -74,13 +74,13 @@ func generateFeatureMatrix() error {
|
|||
fm.SetSimple("Registrar", false, func() bool { return providers.RegistrarTypes[p] != nil })
|
||||
setCap("ALIAS", providers.CanUseAlias)
|
||||
setCap("CAA", providers.CanUseCAA)
|
||||
setCap("PTR", providers.CanUsePTR)
|
||||
setCap("NAPTR", providers.CanUseNAPTR)
|
||||
setCap("PTR", providers.CanUsePTR)
|
||||
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
|
||||
setCap("SRV", providers.CanUseSRV)
|
||||
setCap("SSHFP", providers.CanUseSSHFP)
|
||||
setCap("TLSA", providers.CanUseTLSA)
|
||||
setCap("TXTMulti", providers.CanUseTXTMulti)
|
||||
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
|
||||
setDoc("dual host", providers.DocDualHost, false)
|
||||
setDoc("create-domains", providers.DocCreateDomains, true)
|
||||
|
||||
|
|
|
@ -19,9 +19,9 @@ import (
|
|||
// CAA
|
||||
// CNAME
|
||||
// MX
|
||||
// NAPTR
|
||||
// NS
|
||||
// PTR
|
||||
// NAPTR
|
||||
// SRV
|
||||
// SSHFP
|
||||
// TLSA
|
||||
|
|
|
@ -38,10 +38,10 @@ func (r *RecordConfig) PopulateFromString(rtype, contents, origin string) error
|
|||
return r.SetTarget(contents)
|
||||
case "CAA":
|
||||
return r.SetTargetCAAString(contents)
|
||||
case "NAPTR":
|
||||
return r.SetTargetNAPTRString(contents)
|
||||
case "MX":
|
||||
return r.SetTargetMXString(contents)
|
||||
case "NAPTR":
|
||||
return r.SetTargetNAPTRString(contents)
|
||||
case "SRV":
|
||||
return r.SetTargetSRVString(contents)
|
||||
case "SSHFP":
|
||||
|
|
Loading…
Reference in a new issue