0.1.0 • Published 11 years ago

vagrant-ssh-config-generator v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

vagrant ssh config generator

Create an ssh config to allow ssh access to vagrant boxes.

Build Status

NPM

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 FATAL

To add this to your ssh config file, execute

vagrant-ssh-config-generator >> ~/.ssh/config

Note 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
0.1.0

11 years ago

0.0.2

11 years ago