*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
| Code Block |
|---|
gem install capistrano -v 2.15.5 gem install capistrano-ext |
You've got to be able to ssh to the staging/production machines from your development machine without a password prompt for this to work. It's a common enough problem that you might want to take a look at drush's pushkey command. It's part of drush extras and the readme file shows how to install and use it.
| Code Block |
|---|
drush pushkey user@host.domain.com
Creates an ssh public/private key pair in $HOME/.ssh, if
one does not already exist, and then pushes the public
key to the specified remote account. The password for the
destination account must be entered once to push the
key over; after the key has been stored on the remote
system, subsequent ssh and remote drush commands may be
executed using the public/private key pair for authentication.
|
Local Directory
Your development/site building happens here. It could be on a development machine also.
...