-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cheffile
56 lines (52 loc) · 1.73 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
#!/usr/bin/env ruby
#^syntax detection
site "http://community.opscode.com/api/v1"
# Opscode
cookbook "apache2",
:git => "https://github.com/opscode-cookbooks/apache2.git",
# Unreleased feature: Oracle support
# https://github.com/opscode-cookbooks/apache2/pull/43
:ref => "master"
cookbook "apt"
cookbook "build-essential"
cookbook "git"
cookbook "memcached"
cookbook "mysql"
cookbook "openssh"
cookbook "php",
:git => "https://github.com/opscode-cookbooks/php.git",
# Unreleased feature: Oracle support
# https://github.com/opscode-cookbooks/php/pull/21
:ref => "master"
cookbook "postfix"
cookbook "varnish"
cookbook "vim"
# Custom & Community GitHub-hosted
cookbook "bash",
:git => "https://github.com/myplanetdigital/chef-bash.git",
# PR: https://github.com/mszoernyi/chef-bash/pull/1
:ref => "feature/bash_profile-resource"
cookbook "drush",
:git => "https://github.com/msonnabaum/chef-drush.git",
:ref => "master"
cookbook "percona",
:git => "https://github.com/myplanetdigital/chef-percona.git",
:ref => "master"
cookbook "phpcs",
:git => "https://github.com/myplanetdigital/chef-phpcs.git",
:ref => "master"
cookbook "phpunit",
:git => "https://github.com/myplanetdigital/chef-phpunit.git",
# PR: https://github.com/msonnabaum/chef-phpunit/pull/9
:ref => "GH-9-pear-errors"
cookbook "webgrind",
:git => "https://github.com/myplanetdigital/chef-webgrind.git",
:ref => "master"
cookbook "xdebug",
:git => "https://github.com/myplanetdigital/chef-xdebug.git",
# PR: https://github.com/xforty/chef-xdebug/pull/5
:ref => "GH-5-php_pear-zend-template"
cookbook "xhprof",
:git => "https://github.com/myplanetdigital/chef-xhprof.git",
# PR: https://github.com/msonnabaum/chef-xhprof/pull/5
:ref => "GH-msonnabaum-3"