Created
October 3, 2011 10:46
-
-
Save fadhlirahim/1258879 to your computer and use it in GitHub Desktop.
Vagrant capistrano config bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't forget to run this vagrant command first | |
# vagrant ssh-config >> ~/.ssh/config | |
set :user, 'vagrant' | |
set :run_method, :sudo | |
role :app, '33.33.33.10' | |
ssh_options[:keys] = `vagrant ssh_config | grep IdentityFile`.split.last |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks - will definitely use this!