mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
Tidy: Sort lists
This commit is contained in:
@ -74,13 +74,13 @@ func generateFeatureMatrix() error {
|
|||||||
fm.SetSimple("Registrar", false, func() bool { return providers.RegistrarTypes[p] != nil })
|
fm.SetSimple("Registrar", false, func() bool { return providers.RegistrarTypes[p] != nil })
|
||||||
setCap("ALIAS", providers.CanUseAlias)
|
setCap("ALIAS", providers.CanUseAlias)
|
||||||
setCap("CAA", providers.CanUseCAA)
|
setCap("CAA", providers.CanUseCAA)
|
||||||
setCap("PTR", providers.CanUsePTR)
|
|
||||||
setCap("NAPTR", providers.CanUseNAPTR)
|
setCap("NAPTR", providers.CanUseNAPTR)
|
||||||
|
setCap("PTR", providers.CanUsePTR)
|
||||||
|
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
|
||||||
setCap("SRV", providers.CanUseSRV)
|
setCap("SRV", providers.CanUseSRV)
|
||||||
setCap("SSHFP", providers.CanUseSSHFP)
|
setCap("SSHFP", providers.CanUseSSHFP)
|
||||||
setCap("TLSA", providers.CanUseTLSA)
|
setCap("TLSA", providers.CanUseTLSA)
|
||||||
setCap("TXTMulti", providers.CanUseTXTMulti)
|
setCap("TXTMulti", providers.CanUseTXTMulti)
|
||||||
setCap("R53_ALIAS", providers.CanUseRoute53Alias)
|
|
||||||
setDoc("dual host", providers.DocDualHost, false)
|
setDoc("dual host", providers.DocDualHost, false)
|
||||||
setDoc("create-domains", providers.DocCreateDomains, true)
|
setDoc("create-domains", providers.DocCreateDomains, true)
|
||||||
|
|
||||||
|
@ -19,9 +19,9 @@ import (
|
|||||||
// CAA
|
// CAA
|
||||||
// CNAME
|
// CNAME
|
||||||
// MX
|
// MX
|
||||||
|
// NAPTR
|
||||||
// NS
|
// NS
|
||||||
// PTR
|
// PTR
|
||||||
// NAPTR
|
|
||||||
// SRV
|
// SRV
|
||||||
// SSHFP
|
// SSHFP
|
||||||
// TLSA
|
// TLSA
|
||||||
|
@ -38,10 +38,10 @@ func (r *RecordConfig) PopulateFromString(rtype, contents, origin string) error
|
|||||||
return r.SetTarget(contents)
|
return r.SetTarget(contents)
|
||||||
case "CAA":
|
case "CAA":
|
||||||
return r.SetTargetCAAString(contents)
|
return r.SetTargetCAAString(contents)
|
||||||
case "NAPTR":
|
|
||||||
return r.SetTargetNAPTRString(contents)
|
|
||||||
case "MX":
|
case "MX":
|
||||||
return r.SetTargetMXString(contents)
|
return r.SetTargetMXString(contents)
|
||||||
|
case "NAPTR":
|
||||||
|
return r.SetTargetNAPTRString(contents)
|
||||||
case "SRV":
|
case "SRV":
|
||||||
return r.SetTargetSRVString(contents)
|
return r.SetTargetSRVString(contents)
|
||||||
case "SSHFP":
|
case "SSHFP":
|
||||||
|
Reference in New Issue
Block a user