-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVagrantfile
23 lines (20 loc) · 854 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Vagrant::Config.run do |config|
config.vm.provision :puppet, :module_path => "puppet/modules" do |puppet|
puppet.manifests_path = "puppet"
puppet.manifest_file = "init.pp"
puppet.temp_dir = '/tmp/vagrant-puppet'
puppet.working_directory = '/tmp/vagrant-puppet/manifests'
end
config.vm.define :vagrant01 do |config|
config.vm.box = "quantal64"
config.vm.forward_port 3005, 3005
config.vm.network :hostonly, "10.10.1.10"
config.vm.host_name = "quantal64"
end
config.vm.define :vagrant02 do |config|
config.vm.box = "quantal64"
config.vm.forward_port 3307, 3307
config.vm.network :hostonly, "10.10.1.11"
config.vm.host_name = "quantal64"
end
end