-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create PEM formatted RSA keys for ssh server #10
Conversation
Replaced call to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, i added a few notes regarding some debug stuff
ssh.go
Outdated
return nil | ||
|
||
privateKeyFile, err := os.Create(s.config.KeyPath()) | ||
fmt.Println(err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove this debug statement
ssh.go
Outdated
} | ||
|
||
pubKeyPath := s.config.KeyPath() + ".pub" | ||
fmt.Println(pubKeyPath) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove debug statement
@waveletlet ping |
Ok, fixed the issues you mentioned. |
Fix for #9