Skip to content

Instantly share code, notes, and snippets.

@mvisonneau
Created March 23, 2015 12:49
Show Gist options
  • Save mvisonneau/0da7fdbcbb269145424d to your computer and use it in GitHub Desktop.
Save mvisonneau/0da7fdbcbb269145424d to your computer and use it in GitHub Desktop.
Multiple Machines Vagrant
Vagrant.configure("2") do |config|
config.vm.define :centos do |centos|
centos.vm.box = "centos64"
end
config.vm.define :ubuntu do |ubuntu|
ubuntu.vm.box = "ubuntu/trusty64"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment