grim/hgkeeper

c7acf2d6bfe5
Parents c675554bfb7b
Children 901847118d44
Add a note about the ssh-rsa issue with fedora 33
  • +17 -0
    README.md
  • --- a/README.md Fri Nov 13 21:57:16 2020 -0600
    +++ b/README.md Thu Dec 17 22:29:28 2020 -0600
    @@ -247,3 +247,20 @@
    `hg init ssh://hg@my-hgkeeper-domain/myteam/new-project-1`. If there were no
    issues, the command will exit without error and you are now free to clone it
    with `hg clone ssh://hg@my-hgkeeper-domain/myteam/new-project-1`.
    +
    +## Known Errata
    +
    +### no mutual signature algorithm
    +
    +Fedora 33 disabled `ssh-rsa` by default in openssh-client. This breaks the
    +golang `x/crypto/ssh` library. See
    +[this bug](https://github.com/golang/go/issues/37278) for more details.
    +
    +The current work around for this is to add a host block in your ssh client
    +configuration to re-enable `ssh-rsa`. See the following example:
    +
    +```
    +Host <hgkeeper hostname>
    + PubkeyAcceptedKeyTypes ssh-rsa
    +```
    +