-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVagrantfile
42 lines (35 loc) · 1.21 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
39
40
41
42
Vagrant::Config.run do |config|
config.vm.define :server1 do |server|
server.vm.box = "ubuntu-lucid-64"
server.vm.network :hostonly, "192.168.1.101"
server.vm.forward_port 7474, 7001
server.vm.host_name = 'server1.sandbox.neo4j.org'
server.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.module_path = "modules"
puppet.manifest_file = "site.pp"
end
end
config.vm.define :server2 do |server|
server.vm.box = "ubuntu-lucid-64"
server.vm.network :hostonly, "192.168.1.102"
server.vm.forward_port 7474, 7002
server.vm.host_name = 'server2.sandbox.neo4j.org'
server.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.module_path = "modules"
puppet.manifest_file = "site.pp"
end
end
config.vm.define :server3 do |server|
server.vm.box = "ubuntu-lucid-64"
server.vm.network :hostonly, "192.168.1.103"
server.vm.forward_port 7474, 7003
server.vm.host_name = 'server3.sandbox.neo4j.org'
server.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.module_path = "modules"
puppet.manifest_file = "site.pp"
end
end
end