Making better use of the ssh-config output
authorBryan Bonvallet <btbonval@gmail.com>
Wed, 19 Feb 2014 20:46:05 +0000 (15:46 -0500)
committerBryan Bonvallet <btbonval@gmail.com>
Wed, 19 Feb 2014 20:46:05 +0000 (15:46 -0500)
README.md

index b9330dc909ad97df504e4832a6ef690bc502b46a..ca39766c2565b0d7d272bc5915c7a267448fc563 100644 (file)
--- a/README.md
+++ b/README.md
@@ -425,17 +425,17 @@ access the virtual machine. This is done by running `vagrant ssh-config` from
 (usually found at `~/.ssh/config`). This can be done more simply by typing this
 on the host machine:
 
-        vagrant ssh-config >> ~/.ssh/config
+        vagrant ssh-config --host karmavm >> ~/.ssh/config
 
 The VM will, by default, route its SSH connection through localhost port 2222
 on the host machine and the base user with be vagrant. Point Fabric there when
 running fab commands from `{project_root}`. So the command will look like this:
 
-        fab -H 127.0.0.1 --port=2222 -u vagrant <commands>
+        fab -H karmavm <commands>
 
 In unix, it might be convenient to create and use an alias like so:
 
-        alias vmfab='fab -H 127.0.0.1 --port=2222 -u vagrant'
+        alias vmfab='fab -H karmavm'
         vmfab <commands>
 
 Removing a unix alias is done with `unalias`.