Show HN: Authorize SSH public keys from trusted online identities (github.com) 9 points by cmars 13y ago ↗ HN
[–] account_taken 13y ago ↗ Isn't this simpler?ssh user@host 'mkdir ~/.ssh;echo '`cat ~/.ssh/id_dsa.pub`' >> ~/.ssh/authorized_keys' [–] bradleyland 13y ago ↗ That works for your own key, but if you visit `http://github.com/<username>.keys`, you can get that user's pubkeys. Likewise for Launchpad at `https://launchpad.net/<username>/+sshkeys`. This tool pulls keys from these locations so that you can add other users to your servers.
[–] bradleyland 13y ago ↗ That works for your own key, but if you visit `http://github.com/<username>.keys`, you can get that user's pubkeys. Likewise for Launchpad at `https://launchpad.net/<username>/+sshkeys`. This tool pulls keys from these locations so that you can add other users to your servers.
[–] cmars 13y ago ↗ This project may merge with the ssh-import-id project. Will post updates on this. [–] cmars 13y ago ↗ Indeed it has merged. Read more here: http://blog.dustinkirkland.com/2013/02/ssh-import-id-now-sup...
[–] cmars 13y ago ↗ Indeed it has merged. Read more here: http://blog.dustinkirkland.com/2013/02/ssh-import-id-now-sup...
4 comments
[ 5.4 ms ] story [ 19.9 ms ] threadssh user@host 'mkdir ~/.ssh;echo '`cat ~/.ssh/id_dsa.pub`' >> ~/.ssh/authorized_keys'