forked from chef-boneyard/chef-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCheffile
79 lines (59 loc) · 1.99 KB
/
Cheffile
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
#!/usr/bin/env ruby
#^syntax detection
site 'http://community.opscode.com/api/v1'
# Original Cookbooks
cookbook 'base',
:path => 'site-cookbooks/base'
cookbook 'example_users',
:path => 'site-cookbooks/example_users'
cookbook 'web',
:path => 'site-cookbooks/web'
cookbook 'vagrant_extras',
:git => 'https://github.com/jeremiahsnapp/chef-vagrant_extras'
# :path => '../cookbooks/vagrant_extras'
cookbook 'byobu',
:git => 'https://github.com/jeremiahsnapp/chef-byobu'
# :path => '../cookbooks/byobu'
cookbook 'etckeeper',
:git => 'https://github.com/jeremiahsnapp/chef-etckeeper'
# :path => '../cookbooks/etckeeper'
cookbook 'unattended_upgrades',
:git => 'https://github.com/jeremiahsnapp/chef-unattended_upgrades'
# :path => '../cookbooks/unattended_upgrades'
# Modified Opscode Maintained Cookbooks
cookbook 'postfix',
:git => 'https://github.com/jeremiahsnapp/postfix'
# :path => '../cookbooks/postfix'
cookbook 'perl',
:git => 'https://github.com/jeremiahsnapp/perl'
# :path => '../cookbooks/perl'
cookbook 'logwatch',
:git => 'https://github.com/jeremiahsnapp/logwatch'
# :path => '../cookbooks/logwatch'
cookbook 'users',
:git => 'https://github.com/jeremiahsnapp/users'
# :path => '../cookbooks/users'
# Community Cookbooks
# chef-solo-search provides data bag search for Chef Solo
# make sure this gets commented out when using 'librarian-chef install' to
# prepare for cookbook upload to the chef server since I'm not sure what
# harm it may cause
cookbook 'chef-solo-search',
:git => 'https://github.com/edelight/chef-solo-search'
cookbook 'timezone'
# Opscode Maintained Cookbooks
cookbook 'chef-server'
cookbook 'chef-client'
cookbook 'apt'
cookbook 'git'
cookbook 'openssh'
cookbook 'ntp'
cookbook 'vim'
cookbook 'sudo'
# cookbook 'chef-client'
# cookbook 'apache2', '>= 1.0.0'
# cookbook 'rvm',
# :git => 'https://github.com/fnichol/chef-rvm'
# cookbook 'postgresql',
# :git => 'https://github.com/findsyou/cookbooks',
# :ref => 'postgresql-improvements'