mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
Fix NS1_URLFWD custom record type handling (#2289)
This commit is contained in:
@ -37,7 +37,7 @@ func init() {
|
|||||||
RecordAuditor: AuditRecords,
|
RecordAuditor: AuditRecords,
|
||||||
}
|
}
|
||||||
providers.RegisterDomainServiceProviderType("NS1", fns, providers.CanUseSRV, docNotes)
|
providers.RegisterDomainServiceProviderType("NS1", fns, providers.CanUseSRV, docNotes)
|
||||||
providers.RegisterCustomRecordType("NS1_URLFWD", "NS1", "URLFWD")
|
providers.RegisterCustomRecordType("NS1_URLFWD", "NS1", "")
|
||||||
}
|
}
|
||||||
|
|
||||||
type nsone struct {
|
type nsone struct {
|
||||||
@ -341,7 +341,7 @@ func convert(zr *dns.ZoneRecord, domain string) ([]*models.RecordConfig, error)
|
|||||||
return nil, fmt.Errorf("unparsable %s record received from ns1: %w", rtype, err)
|
return nil, fmt.Errorf("unparsable %s record received from ns1: %w", rtype, err)
|
||||||
}
|
}
|
||||||
case "URLFWD":
|
case "URLFWD":
|
||||||
rec.Type = rtype
|
rec.Type = "NS1_URLFWD"
|
||||||
if err := rec.SetTarget(ans); err != nil {
|
if err := rec.SetTarget(ans); err != nil {
|
||||||
return nil, fmt.Errorf("unparsable %s record received from ns1: %w", rtype, err)
|
return nil, fmt.Errorf("unparsable %s record received from ns1: %w", rtype, err)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user