Show HN: Authorize SSH public keys from trusted online identitiesgithub.com/cmars 9 pointscmars13 years ago4 commentsSaveHideCopy link On HNComments−account_taken13yIsn't this simpler?ssh user@host 'mkdir ~/.ssh;echo '`cat ~/.ssh/id_dsa.pub`' >> ~/.ssh/authorized_keys'−bradleyland13yThat 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.−cmarsOP13yThis project may merge with the ssh-import-id project. Will post updates on this.−cmarsOP13yIndeed it has merged. Read more here: http://blog.dustinkirkland.com/2013/02/ssh-import-id-now-sup...
Comments
Isn't this simpler?
ssh user@host 'mkdir ~/.ssh;echo '`cat ~/.ssh/id_dsa.pub`' >> ~/.ssh/authorized_keys'
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.
This project may merge with the ssh-import-id project. Will post updates on this.
Indeed it has merged. Read more here: http://blog.dustinkirkland.com/2013/02/ssh-import-id-now-sup...