Skip to content

Instantly share code, notes, and snippets.

@phstudy
Created April 25, 2015 00:27
Show Gist options
  • Save phstudy/030b998695421af3f328 to your computer and use it in GitHub Desktop.
Save phstudy/030b998695421af3f328 to your computer and use it in GitHub Desktop.
run 5 vms
Vagrant.configure("2") do |config|
config.vm.define "vm1" do |vm1|
vm1.vm.box = "puppetlab-centos-64-nocm"
end
config.vm.define "vm2" do |vm2|
vm2.vm.box = "puppetlab-centos-64-nocm"
end
config.vm.define "vm3" do |vm3|
vm3.vm.box = "puppetlab-centos-64-nocm"
end
config.vm.define "vm4" do |vm4|
vm4.vm.box = "puppetlab-centos-64-nocm"
end
config.vm.define "vm5" do |vm5|
vm5.vm.box = "puppetlab-centos-64-nocm"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment