-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cheffile
44 lines (34 loc) · 1.09 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
#!/usr/bin/env ruby
#^syntax detection
site 'http://community.opscode.com/api/v1'
cookbook 'drupal',
:git => 'git://github.com/xforty/chef-drupal.git',
:ref => '1.1.0'
# Load from xforty's develop branch until msonnabaum's stabalizes
# https://github.com/msonnabaum/chef-drush
cookbook 'drush',
:git => 'git://github.com/xforty/chef-drush.git',
:ref => 'develop'
cookbook 'initdb',
:git => 'git://github.com/xforty/chef-initdb.git',
:ref => '1.0.1'
# Load from xforty repo until known issue is fixed
# http://tickets.opscode.com/browse/COOK-932
cookbook 'mysql',
:git => 'git://github.com/xforty/chef-mysql.git',
:ref => 'xforty'
cookbook 'php_module',
:git => 'git://github.com/xforty/chef-php_module.git',
:ref => '1.0.0'
cookbook 'php_pear',
:git => 'git://github.com/xforty/chef-php_pear.git',
:ref => '1.0.0'
cookbook 'rpmforge',
:git => 'git://github.com/xforty/chef-rpmforge.git',
:ref => '1.0.0'
cookbook 'squid',
:git => 'git://github.com/xforty/chef-squid.git',
:ref => '1.0.0'
cookbook 'xforty',
:git => 'git://github.com/xforty/chef-xforty.git',
:ref => '1.1.0'