Skip to content

Instantly share code, notes, and snippets.

@esogs
esogs / gist:6829479
Last active December 24, 2015 16:39
vagrant multi-machine, multi-provider, should this work? vagrant --version Vagrant 1.3.3
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "Fedora_19_x86_64"
config.vm.box_url = "https://dl.dropboxusercontent.com/u/86066173/fedora-19.box"
config.vm.define :web do |web|
web.vm.provider :virtualbox do |vb, override|