-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdna.json
48 lines (47 loc) · 1.08 KB
/
dna.json
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
// This file specifies which recipes to run, and what settings to override
// All overridable attributes are listed in READMEs on github
//
// All cookbooks have data_dir (/data/[something]), user (fort),
// apache.listen_port (80), and apache.listen_hostname ([thing].fort)
// attributes (defaults in brackets). Some have others, too.
//
// Override them as below.
{
"apt_mirror": {
"user": "vagrant"
},
"cpan_mirror": {
"user": "vagrant"
},
"gem_mirror": {
"user": "vagrant"
},
"pypi_mirror": {
"user": "vagrant"
},
"source_mirror": {
"user": "vagrant"
},
"content_mirror": {
"user": "vagrant"
},
"file_mirror": {
"user": "vagrant",
"files": {
"xcode": {
"mac": {
// "args": "--header='Cookie: ADCDownloadAuth=TODO'"
}
}
}
},
"run_list": [
"recipe[apt-mirror::default]",
"recipe[cpan-mirror::default]",
"recipe[gem-mirror::default]",
"recipe[pypi-mirror::default]",
"recipe[source-mirror::default]",
"recipe[content-mirror::default]",
"recipe[file-mirror::default]"
]
}