authorized_keys: allow comments (or otherwise invalid lines)

This commit is contained in:
Merlijn B. W. Wajer 2017-03-10 11:40:46 +01:00
parent 98a6f4ec64
commit 4d1e594a22

View file

@ -386,7 +386,9 @@ func loadAuthorisedKeys(authorisedkeys string) {
pubkey, comment, options, rest, err := ssh.ParseAuthorizedKey(authorisedKeysBytes)
if err != nil {
log.Fatal(err)
log.Printf("Error parsing line: %s", err)
authorisedKeysBytes = rest
continue
}
devinfo := deviceInfo{Comment: comment}