Skip to content

Instantly share code, notes, and snippets.

@jaybuidl
Last active January 16, 2017 15:03
Show Gist options
  • Save jaybuidl/7f11f7437831b20b335b896aa30321df to your computer and use it in GitHub Desktop.
Save jaybuidl/7f11f7437831b20b335b896aa30321df to your computer and use it in GitHub Desktop.
#!/bin/bash
# with ansible role from https://galaxy.ansible.com/wtanaka/vagrant
ansible-galaxy install wtanaka.vagrant
#--------------
# or manually
version=1.9.1
wget https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb
sudo dpkg -i vagrant_${version}_x86_64.deb
sudo sudo apt-get update && sudo apt-get install -y virtualbox
vagrant init hashicorp/precise64
vagrant up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment