forked from xforty/vagrant-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cheffile
58 lines (47 loc) · 1.66 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
#!/usr/bin/env ruby
#^syntax detection
site 'http://community.opscode.com/api/v1'
# Load HEAD of master branch until we tag an intial release
cookbook 'drupal',
:git => 'git://github.com/xforty/chef-drupal.git',
:ref => 'master'
# Load HEAD of master branch until development calms down
cookbook 'drush',
:git => 'git://github.com/xforty/chef-drush.git',
:ref => 'master'
# Load HEAD of master branch until we tag an intial release
cookbook 'initdb',
:git => 'git://github.com/xforty/chef-initdb.git',
:ref => 'master'
# Load from xforty repo until known issue is fixed
# https://github.com/opscode/cookbooks/pull/286
cookbook 'mysql',
:git => 'git://github.com/xforty/cookbooks.git',
:ref => 'xforty',
:path => 'mysql'
# Load from xforty repo until known issues are fixed
# http://tickets.opscode.com/browse/COOK-993
# http://tickets.opscode.com/browse/COOK-996
cookbook 'php',
:git => 'git://github.com/xforty/cookbooks.git',
:ref => 'xforty',
:path => 'php'
# Load HEAD of master branch until we tag an intial release
cookbook 'php_module',
:git => 'git://github.com/xforty/chef-php_module.git',
:ref => 'master'
# Load HEAD of master branch until we tag an intial release
cookbook 'php_pear',
:git => 'git://github.com/xforty/chef-php_pear.git',
:ref => 'master'
cookbook 'rpmforge',
:git => 'git://github.com/xforty/chef-rpmforge.git',
:ref => '0.0.1'
# Load HEAD of master branch until we tag an intial release
cookbook 'xforty',
:git => 'git://github.com/xforty/chef-xforty.git',
:ref => 'master'
# Load HEAD of master branch until we tag an intial release
cookbook 'squid',
:git => 'git://github.com/xforty/chef-squid.git',
:ref => 'master'