-
Notifications
You must be signed in to change notification settings - Fork 76
/
Berksfile
42 lines (38 loc) · 1.05 KB
/
Berksfile
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
source 'https://supermarket.chef.io'
require 'chef/version'
if Chef::VERSION.to_f < 12.0
cookbook 'apt', '< 4.0'
cookbook 'build-essential', '< 3.0'
cookbook 'homebrew', '< 3.0'
cookbook 'mingw', '< 1.0'
cookbook 'ohai', '< 4.0'
cookbook 'selinux', '< 1.0'
cookbook 'sysctl', '< 0.10'
cookbook 'windows', '< 2.0'
cookbook 'yum', '< 4.0'
cookbook 'yum-epel', '< 2.0'
elsif Chef::VERSION.to_f < 12.5
cookbook 'apt', '< 6.0'
cookbook 'build-essential', '< 8.0'
cookbook 'homebrew', '< 4.0'
cookbook 'mingw', '< 2.0'
cookbook 'ohai', '< 5.0'
cookbook 'selinux', '< 1.0'
cookbook 'sysctl', '< 0.10'
cookbook 'windows', '< 3.0'
cookbook 'yum', '< 5.0'
elsif Chef::VERSION.to_f < 12.6
cookbook 'apt', '< 6.0'
cookbook 'windows', '< 3.0'
cookbook 'yum', '< 5.0'
elsif Chef::VERSION.to_f < 12.9
cookbook 'apt', '< 6.0'
cookbook 'yum', '< 5.0'
elsif Chef::VERSION.to_f < 12.14
cookbook 'yum', '< 5.0'
end
group :integration do
cookbook 'java'
cookbook 'hadoop_test', path: './test/fixtures/cookbooks/hadoop_test'
end
metadata