-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
38 lines (30 loc) · 1.04 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.define :mesh2 do |mesh2_config|
mesh2_config.vm.box = "mesh2"
mesh2_config.vm.host_name = 'mesh2'
mesh2_config.vm.network :hostonly, "10.65.65.2"
end
config.vm.define :mesh3 do |mesh3_config|
mesh3_config.vm.box = "mesh3"
mesh3_config.vm.host_name = 'mesh3'
mesh3_config.vm.network :hostonly, "10.65.65.3"
end
config.vm.define :mesh4 do |mesh4_config|
mesh4_config.vm.box = "mesh4"
mesh4_config.vm.host_name = 'mesh4'
mesh4_config.vm.network :hostonly, "10.65.65.4"
end
config.vm.define :mesh5 do |mesh5_config|
mesh5_config.vm.box = "mesh5"
mesh5_config.vm.host_name = 'mesh5'
mesh5_config.vm.network :hostonly, "10.65.65.5"
end
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.provision :puppet, :module_path => "modules", :options => "--verbose --debug" do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "site.pp"
end
end