forked from cschoell/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
69 lines (54 loc) · 2.19 KB
/
Copy pathVagrantfile
File metadata and controls
69 lines (54 loc) · 2.19 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.customize [ "modifyvm", :id, "--memory", 1024 ]
config.vm.customize [ "modifyvm", :id, "--cpus", 2 ]
config.vm.define :java_ubuntu do |cfg|
cfg.vm.box = "precise64"
cfg.vm.box_url = "http://files.vagrantup.com/precise64.box"
cfg.vm.provision :puppet do |puppet|
puppet.module_path = [ "manifests", "modules", "spec/fixtures/modules" ]
puppet.manifests_path = "manifests"
puppet.manifest_file = "vagrant.pp"
puppet.options = [ "-v", ]
end
end
config.vm.define :java_squeeze do |cfg|
cfg.vm.box = "squeeze64"
cfg.vm.box_url = "http://dl.dropbox.com/u/937870/VMs/squeeze64.box"
cfg.vm.provision :puppet do |puppet|
puppet.module_path = [ "manifests", "modules", "spec/fixtures/modules" ]
puppet.manifests_path = "manifests"
puppet.manifest_file = "vagrant.pp"
puppet.options = [ "-v", ]
end
end
# config.vm.define :java_centos63_64 do |cfg|
#
# cfg.vm.box = "centos63_64"
# cfg.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/centos-63-x64.box"
# cfg.vm.provision :puppet do |puppet|
#
# puppet.module_path = [ "modules", "spec/fixtures/modules" ]
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "vagrant.pp"
# puppet.options = [ "-v", ]
#
# end
#
# end
# config.vm.define :java_gentoo64 do |cfg|
#
# cfg.vm.box = "gentoo64"
# cfg.vm.box_url = "http://dl.dropbox.com/u/1212791/gentoo-64-i686-3.3.8.box"
# cfg.vm.provision :puppet do |puppet|
#
# puppet.module_path = [ "modules", "spec/fixtures/modules" ]
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "vagrant.pp"
# puppet.options = [ "-v", ]
#
# end
#
# end
end