This repository has been archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Berksfile.common
59 lines (52 loc) · 1.63 KB
/
Berksfile.common
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
# -*- mode: ruby -*-
#
# This file is intended to be loaded into your Berksfile with
# 'instance_eval', in order to manage all of the external cookbooks.
#
#
# Upstream cookbooks
#
# These are all the top-level cookbooks used by isolated chef servers
# in BACH clusters. The bach_cluster deployment cookbook maintains
# these references so we may upload them to the chef server created
# by the cookbook.
#
# This list was derived from known roles and runlists.
#
# cat roles/*.json | grep recipe | perl -nle 's/\s//g; print' | \
# sort -n | uniq | \
# perl -nle 's/\"//g; s/^recipe//g; s/^.//; s/..$//; s/::.*//; print' | \
# sort | uniq | perl -nle 'print "depends \"$_\""'
#
cookbook 'apt'
cookbook 'chef-client'
cookbook 'java'
cookbook 'maven'
cookbook 'ntp'
cookbook 'pam'
cookbook 'ubuntu'
cookbook 'chef-sugar'
cookbook 'openssl'
cookbook 'postgresql'
cookbook 'resolvconf'
cookbook 'database'
#
# Transitive dependencies that have been forked for one reason or another.
#
# bfd is not on the supermarket
cookbook 'bfd',
git: 'https://github.com/bloomberg/openbfdd-cookbook'
# cobblerd upstream, pending submitting update to supermarket
cookbook 'cobblerd',
git: 'https://github.com/cbaenziger/cobbler-cookbook',
branch: 'source_build'
# 'kafka' has an entry on the supermarket, but it's the wrong cookbook.
cookbook 'kafka',
git: 'https://github.com/mthssdrbrg/kafka-cookbook.git',
tag: 'v2.2.2'
# we have a full fork of the chef-pdns cookbook
cookbook 'pdns',
git: 'https://github.com/http-418/pdns'
# locking_resource is not on the supermarket
cookbook 'locking_resource',
git: 'https://github.com/bloomberg/locking_resource-cookbook'