mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
dnsimple: bug-fix SSHFP, add multi TXT support (#639)
* dnsimple: bug-fix SSHFP, add multi TXT support The default logic for encoding SSHFP records was dropping the key and hash algorithms and just posting the content, the `Can` check didn't stop attempts to use SSHFP. So, implement SSHFP support. DNSimple support multiple DNS strings in a TXT record, by representing the payload as quoted strings already. This doesn't appear to be documented, but it does actually work. * Update docs support matrix too * fix go fmt missing upstream Tests failing on my branch for something broken upstream * fix typo in error message
This commit is contained in:
@ -33,8 +33,8 @@ var _ = cmd(catDebug, &cli.Command{
|
||||
Name: "version",
|
||||
Usage: "Print version information",
|
||||
Action: func(c *cli.Context) error {
|
||||
_, err := fmt.Println(version)
|
||||
return err
|
||||
_, err := fmt.Println(version)
|
||||
return err
|
||||
},
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user