I\'ve inherited a Rails project, hosted on Linode.
The previous developer was using a BitBucket repository, along with Capistrano for deployments.
I\'ve since
Try adding the following line to your Capistrano script, this will explicitly tell Capistrano what key it should be using.
set :ssh_options, { forward_agent: true, paranoid: true, keys: "~/.ssh/id_rsa" }