Skip to content

Instantly share code, notes, and snippets.

@gregoriomelo
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gregoriomelo/d95df9fca7496859075e to your computer and use it in GitHub Desktop.
Save gregoriomelo/d95df9fca7496859075e to your computer and use it in GitHub Desktop.
Installing Homebrew, VirtualBox and Vagrant
#!/bin/bash
echo "Installing HomeBrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install caskroom/cask/brew-cask
echo "Installing VirtualBox and Vagrant"
brew cask install virtualbox vagrant
echo "Adding Ubuntu box to Vagrant"
vagrant box add ubuntu/trusty64
echo "Installing Ansible"
brew install ansible
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment