mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
wip!
This commit is contained in:
@@ -56,8 +56,15 @@ func initBind(config map[string]string, providermeta json.RawMessage) (providers
|
||||
}
|
||||
|
||||
func init() {
|
||||
providers.RegisterDomainServiceProviderType("BIND", initBind, providers.CanUsePTR,
|
||||
providers.CanUseSRV, providers.CanUseCAA, providers.CanUseTLSA, providers.CantUseNOPURGE, docNotes)
|
||||
providers.RegisterDomainServiceProviderType("BIND", initBind,
|
||||
providers.CanUsePTR,
|
||||
providers.CanUseSRV,
|
||||
providers.CanUseCAA,
|
||||
providers.CanUseTLSA,
|
||||
providers.CantUseNOPURGE,
|
||||
providers.CasePreserving,
|
||||
docNotes,
|
||||
)
|
||||
}
|
||||
|
||||
type SoaInfo struct {
|
||||
|
@@ -24,6 +24,8 @@ const (
|
||||
// so it is easier to simply mark this feature as not working for this
|
||||
// provider.
|
||||
CantUseNOPURGE
|
||||
// CasePreserving indicates the provider preserves case in DNS names.
|
||||
CasePreserving
|
||||
|
||||
// DocOfficiallySupported means it is actively used and maintained by stack exchange
|
||||
DocOfficiallySupported
|
||||
|
@@ -38,6 +38,7 @@ var docNotes = providers.DocumentationNotes{
|
||||
providers.DocCreateDomains: providers.Can(),
|
||||
providers.DocOfficiallySupported: providers.Can(),
|
||||
providers.CanUseAlias: providers.Can("CF automatically flattens CNAME records into A records dynamically"),
|
||||
providers.CasePreserving: providers.Can(),
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
Reference in New Issue
Block a user