-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
43 lines (36 loc) · 947 Bytes
/
Vagrantfile
File metadata and controls
43 lines (36 loc) · 947 Bytes
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
43
# -*- mode: ruby -*-
# vi: set ft=ruby :
boxes = [
{
:name => "server1",
:eth1 => "192.168.205.10",
:mem => "512",
:cpu => "1"
},
{
:name => "server2",
:eth1 => "192.168.205.11",
:mem => "512",
:cpu => "1"
},
{
:name => "server3",
:eth1 => "192.168.205.12",
:mem => "512",
:cpu => "1"
}
]
Vagrant.configure(2) do |config|
config.vm.box = "debian/jessie64"
boxes.each do |opts|
config.vm.define opts[:name] do |config|
config.vm.hostname = opts[:name]
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", opts[:mem]]
v.customize ["modifyvm", :id, "--cpus", opts[:cpu]]
v.customize ["modifyvm", :id, "--name", opts[:name]]
end
config.vm.network :private_network, ip: opts[:eth1]
end
end
end