Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

capistrano one username for multiple users

I have multiple developers working on the same application in rails. I am trying to get capistrano setup to use one login (preferably with public keys vs. password). I can't seem to find anything on the net that covers this. Can anyone point me in the right direction?

Thanks

like image 830
Toby Joiner Avatar asked Nov 05 '10 19:11

Toby Joiner


1 Answers

You can use the set :user, "username" instruction to set a generic username like deploy Then you can add all their public keys to the /home/deploy/.ssh/authorized_keys file

like image 87
Don Pinkster Avatar answered Sep 26 '22 00:09

Don Pinkster