> > In my attempts to deploy an app with mina to a privately networked VM > managed by Vagrant, I encounter a prompt to supply a password, which I'd > like to avoid -- preferring recognition of my local ssh keys. >
So, in config/deploy.rb, include the following settings... set :user, 'deployer' # Username in the server to SSH to. set :identity_file, '/Users/someuser/.ssh/id_rsa.pub' That works. G -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
