Last active
August 29, 2015 14:02
-
-
Save yamishi13/4cb664d44568deec24f5 to your computer and use it in GitHub Desktop.
vagranter environment installer
This file contains 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
#!/bin/bash | |
# vagranter environment installer | |
# TODO: develop compatibility with other platforms aside from ubuntu | |
wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.3_x86_64.deb | |
sudo dpkg -i vagrant_1.6.3_x86_64.deb | |
rm vagrant_1.6.3_x86_64.deb | |
# TODO: install ruby, gems and vagrant plugins | |
# TODO: install required gems | |
# TODO: install vagrant plugins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment