forked from xforty/vagrant-aegir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cheffile
36 lines (28 loc) · 989 Bytes
/
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
#!/usr/bin/env ruby
#^syntax detection
site 'http://community.opscode.com/api/v1'
cookbook 'database', '1.1.0'
cookbook 'sudo', '1.0.0'
# Load HEAD of master branch until we tag an intial release
cookbook 'drupal',
:git => '[email protected]:xforty/chef-drupal.git',
:ref => 'master'
# Load from xforty repo until pull request is completed
# https://github.com/msonnabaum/chef-drush/pull/7
cookbook 'drush',
:git => '[email protected]:xforty/chef-drush.git',
:ref => 'master'
# Load HEAD of master branch until we tag an intial release
cookbook 'initdb',
:git => '[email protected]: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 => '[email protected]:xforty/cookbooks.git',
:ref => 'master',
:path => 'mysql'
# Load HEAD of master branch until we tag an intial release
cookbook 'xforty',
:git => '[email protected]:xforty/chef-xforty.git',
:ref => 'master'