forked from sous-chefs/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.kitchen.yml
More file actions
99 lines (96 loc) · 1.9 KB
/
.kitchen.yml
File metadata and controls
99 lines (96 loc) · 1.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 1024
provisioner:
name: chef_solo
platforms:
- name: ubuntu-13.10
driver:
box: opscode-ubuntu-13.10
run_list:
- recipe[apt]
- name: ubuntu-12.04
driver:
box: opscode-ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-10.04
driver:
box: opscode-ubuntu-10.04
run_list:
- recipe[apt]
- name: debian-6.0.8
driver:
box: opscode-debian-6.0.8
run_list:
- recipe[apt]
- name: debian-7.4
driver:
box: opscode-debian-7.4
run_list:
- recipe[apt]
- name: centos-6.5
driver:
box: opscode-centos-6.5
- name: centos-5.10
driver:
box: opscode-centos-5.10
- name: fedora-19
driver:
box: opscode-fedora-19
suites:
- name: openjdk
excludes:
- fedora-19
run_list:
- recipe[java::default]
- name: openjdk-7
excludes:
- ubuntu-10.04
- debian-6.0.8
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "7"
- name: oracle
run_list:
- recipe[java::default]
attributes:
java:
oracle:
accept_oracle_download_terms: true
install_flavor: oracle
- name: oracle-7
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "7"
oracle:
accept_oracle_download_terms: true
install_flavor: oracle
- name: oracle-8
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "8"
oracle:
accept_oracle_download_terms: true
install_flavor: oracle
- name: oracle-direct
run_list:
- recipe[java::oracle]
attributes:
java:
oracle:
accept_oracle_download_terms: true
- name: openjdk-direct
run_list:
- recipe[java::openjdk]
excludes:
- fedora-19