0.1.0 • Published 12 years ago
vagrant-ssh-config-generator v0.1.0
vagrant ssh config generator
Create an ssh config to allow ssh access to vagrant boxes.
Usage
The command vagrant-ssh-config-generator outputs a string that looks like
Host *.vagrant.dev
User vagrant
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile "/HOME_DIRECTORY_HERE/.vagrant.d/insecure_private_key"
IdentitiesOnly yes
LogLevel FATALTo add this to your ssh config file, execute
vagrant-ssh-config-generator >> ~/.ssh/configNote that in the example above, HOME_DIRECTORY_HERE will be replaced with your actual home directory
Test
# install development dependcies
npm install
# run the tests
npm test
