-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathVagrantfile
More file actions
33 lines (28 loc) · 822 Bytes
/
Vagrantfile
File metadata and controls
33 lines (28 loc) · 822 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = 'centos63_64min'
config.vm.box_url = 'https://dl.dropbox.com/u/7225008/Vagrant/CentOS-6.3-x86_64-minimal.box'
config.vm.define :broker do |broker|
broker.vm.network :hostonly, "192.168.133.10"
broker.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "broker.pp"
puppet.options = [
'--verbose',
'--debug',
]
end
end
config.vm.define :node do |node|
node.vm.network :hostonly, "192.168.133.20"
node.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "node.pp"
puppet.options = [
'--verbose',
'--debug',
]
end
end
end